-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathindex.js
41 lines (37 loc) · 1.27 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* @fileOverview Provides a reference to the global object
* the below solution works in ES3+ environment and doesn't violates CSP in Chrome apps
* see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis
*/
'use strict'; /* eslint strict:0 */
var getGlobal = function () {
var globalObj = (function () {
if (typeof globalThis !== 'undefined') { return globalThis; }
if (typeof window !== 'undefined') { return window; }
if (typeof self !== 'undefined') { return self; }
if (typeof global !== 'undefined') { return global; }
throw new Error('unable to locate global object');
})()
/*
The below code was added in case there is pollution in global namespace
windows object during transpilation with __esModule being set. Below code would support
global import in all bundle use cases
*/
if (globalObj && globalObj.__esModule) {
const proxyGlobal = new Proxy(globalObj, {
get: function (target, prop) {
if (prop === 'default') {
return target
}
return target[prop]
},
set: function (target, prop, value) {
target[prop] = value
return true
},
})
return proxyGlobal
}
return globalObj
};
module.exports = getGlobal();