15 lines
616 B
JavaScript
15 lines
616 B
JavaScript
// ==========================================================================
|
|
// Browser sniffing
|
|
// Unfortunately, due to mixed support, UA sniffing is required
|
|
// ==========================================================================
|
|
|
|
const browser = {
|
|
isIE: /* @cc_on!@ */ false || !!document.documentMode,
|
|
isEdge: window.navigator.userAgent.includes('Edge'),
|
|
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;
|