UNPKG

hy_gx

Version:

9 lines (7 loc) 252 B
// Browser environment sniffing export const inBrowser = typeof window !== 'undefined' && Object.prototype.toString.call(window) !== '[object Object]' export const isIE9 = inBrowser && navigator.userAgent.toLowerCase().indexOf('msie 9.0') > 0