1 | {"version":3,"file":"shim.js","sourceRoot":"","sources":["../../../../src/lib/browser/shim.ts"],"names":[],"mappings":";;;;;;;;;;;IACA,0CAAwC;IAGxC,wCAAsC;IAGtC,sCAAoC;IAIpC,IAAM,MAAM,GAAQ,MAAM,CAAC;IAK3B,IAAI,OAAO,MAAM,CAAC,OAAO,KAAK,WAAW,EAAE;QACzC,MAAM,CAAC,OAAO,GAAG,OAAO,CAAC,+BAA+B,CAAC,CAAC;KAC3D;IAGD,IAAI,OAAO,MAAM,CAAC,GAAG,KAAK,WAAW,EAAE;QACrC,MAAM,CAAC,GAAG,GAAG,OAAO,CAAC,2BAA2B,CAAC,CAAC;KACnD;IAGD,IAAI,OAAO,MAAM,CAAC,MAAM,KAAK,WAAW,EAAE;QACxC,MAAM,CAAC,MAAM,GAAG,OAAO,CAAC,8BAA8B,CAAC,CAAC;KACzD;IAGD,IAAI,OAAO,MAAM,CAAC,GAAG,KAAK,WAAW,EAAE;QACrC,MAAM,CAAC,GAAG,GAAG,OAAO,CAAC,2BAA2B,CAAC,CAAC;KACnD;IAGD,IAAI,OAAO,MAAM,CAAC,OAAO,KAAK,WAAW,EAAE;QACzC,MAAM,CAAC,OAAO,GAAG,OAAO,CAAC,gCAAgC,CAAC,CAAC;KAC5D","sourcesContent":["// Intern and its supporting libraries use Object.assign\nimport 'core-js/features/object/assign';\n\n// @theintern/common requires `forEach` for typed arrays\nimport 'core-js/features/typed-array';\n\n// The HTML reporter uses URLSearchParams\nimport 'url-search-params-polyfill';\n\n// We can't use @theintern/common's global here because loading\n// @theintern/common also loads common/Evented, which requires Map\nconst global = <any>window;\n\n// Polyfill promise if no global Promise is defined. Manage polyfill\n// installation manually to ensure native Promises aren't replaced\n// unintentionallyo\nif (typeof global.Promise === 'undefined') {\n global.Promise = require('core-js-pure/features/promise');\n}\n\n// Polyfill map if no global Map is defined.\nif (typeof global.Map === 'undefined') {\n global.Map = require('core-js-pure/features/map');\n}\n\n// Polyfill Symbol if no global Symbol is defined.\nif (typeof global.Symbol === 'undefined') {\n global.Symbol = require('core-js-pure/features/symbol');\n}\n\n// Polyfill Set if no global Set is defined.\nif (typeof global.Set === 'undefined') {\n global.Set = require('core-js-pure/features/set');\n}\n\n// Polyfill WeakSet if no global WeakSet is defined.\nif (typeof global.WeakSet === 'undefined') {\n global.WeakSet = require('core-js-pure/features/weak-set');\n}\n"]} |