-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
51 lines (40 loc) · 1.06 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
42
43
44
45
46
47
48
49
50
51
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define([], factory);
} else if (typeof exports === 'object') {
module.exports = factory();
} else {
root['getGlobals'] = factory();
}
})(this, function () {
if (typeof document === 'undefined') {
throw new Error('No node support yet.');
}
return {
getGlobals,
printGlobals,
};
function getGlobals() {
const forceExclude = [
'getGlobals',
'forceExclude',
'runnerWindow',
'iWindow',
'freshContext',
'globals'
];
const iWindow = document.createElement('iframe');
document.body.appendChild(iWindow);
const freshContext = iWindow.contentWindow;
const globals = Object
.keys(window)
.filter(key => !freshContext.hasOwnProperty(key))
.filter(key => !forceExclude.includes(key));
document.body.removeChild(iWindow);
return globals;
};
function printGlobals() {
const globals = getGlobals().join(', ');
console.log(`Available global variables: ${globals}.`);
};
});