Sha256: 50812069c123fc9b0bba861f7c70593db2ed9c9c54f41ab51a8576f9520ee396
Contents?: true
Size: 324 Bytes
Versions: 1
Compression:
Stored size: 324 Bytes
Contents
// `window.ActiveXObject` is "falsey" in IE11 (but not `undefined` or `false`) // `"ActiveXObject" in window` returns `true` in all IE versions // only IE11 will pass _both_ of these conditions export const isIE11 = !window.ActiveXObject && 'ActiveXObject' in window; export const isEdge = /Edge/.test(navigator.userAgent);
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
discourse-ember-source-3.6.0.0 | dist/es/internal-test-helpers/lib/browser-detect.js |