First release
This commit is contained in:
commit
fa6c85266e
2339 changed files with 761050 additions and 0 deletions
13
node_modules/global/window.js
generated
vendored
Normal file
13
node_modules/global/window.js
generated
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
var win;
|
||||
|
||||
if (typeof window !== "undefined") {
|
||||
win = window;
|
||||
} else if (typeof global !== "undefined") {
|
||||
win = global;
|
||||
} else if (typeof self !== "undefined"){
|
||||
win = self;
|
||||
} else {
|
||||
win = {};
|
||||
}
|
||||
|
||||
module.exports = win;
|
Loading…
Add table
Add a link
Reference in a new issue