main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
254 bytes
|
Line | |
---|
1 | /* eslint no-negated-condition: 0, no-new-func: 0 */
|
---|
2 |
|
---|
3 | 'use strict';
|
---|
4 |
|
---|
5 | if (typeof self !== 'undefined') {
|
---|
6 | module.exports = self;
|
---|
7 | } else if (typeof window !== 'undefined') {
|
---|
8 | module.exports = window;
|
---|
9 | } else {
|
---|
10 | module.exports = Function('return this')();
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.