14 lines
569 B
JavaScript
14 lines
569 B
JavaScript
// ==========================================================================
|
|
// Browser sniffing
|
|
// Unfortunately, due to mixed support, UA sniffing is required
|
|
// ==========================================================================
|
|
|
|
const browser = {
|
|
isIE: /* @cc_on!@ */ false || !!document.documentMode,
|
|
isWebkit: 'WebkitAppearance' in document.documentElement.style && !/Edge/.test(navigator.userAgent),
|
|
isIPhone: /(iPhone|iPod)/gi.test(navigator.platform),
|
|
isIos: /(iPad|iPhone|iPod)/gi.test(navigator.platform),
|
|
};
|
|
|
|
export default browser;
|