mirror of https://github.com/embarklabs/embark.git
mainContext -- fallback to `this`, then `self`, then `undefined`
This commit is contained in:
parent
0e801800cd
commit
757e825be9
|
@ -1 +1,5 @@
|
||||||
var __mainContext = __mainContext || (typeof self !== 'undefined' ? self : this);
|
var __mainContext = __mainContext || (
|
||||||
|
typeof this !== 'undefined' ? this : (
|
||||||
|
typeof self !== 'undefined' ? self : void 0
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
Loading…
Reference in New Issue