Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
13
VApp/node_modules/global/window.js
generated
vendored
Normal file
13
VApp/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;
|
||||
Reference in New Issue
Block a user