ant-design-vue/components/_util/env.ts

11 lines
524 B
TypeScript
Raw Normal View History

/* eslint-disable no-undef */
2019-09-27 10:44:11 +00:00
// Browser environment sniffing
2019-01-12 03:33:27 +00:00
export const inBrowser = typeof window !== 'undefined';
export const UA = inBrowser && window.navigator.userAgent.toLowerCase();
export const isIE = UA && /msie|trident/.test(UA);
export const isIE9 = UA && UA.indexOf('msie 9.0') > 0;
2019-09-27 10:44:11 +00:00
export const isEdge = UA && UA.indexOf('edge/') > 0;
export const isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;
export const isPhantomJS = UA && /phantomjs/.test(UA);
export const isFF = UA && UA.match(/firefox\/(\d+)/);