@ember/test-helpers
Version:
Helpers for testing Ember.js applications
19 lines (16 loc) • 443 B
JavaScript
/* globals global */
var global$1 = (() => {
if (typeof self !== 'undefined') {
return self;
} else if (typeof window !== 'undefined') {
return window;
// @ts-ignore -- global does not exist
} else if (typeof global !== 'undefined') {
// @ts-ignore -- global does not exist
return global;
} else {
return Function('return this')();
}
})();
export { global$1 as default };
//# sourceMappingURL=global.js.map