ohctechv3/.svn/pristine/6c/6c862c25130a6dce2baf541db58e85e64a49f558.svn-base
2024-10-28 15:03:36 +05:30

12 lines
254 B
Plaintext

/* eslint no-negated-condition: 0, no-new-func: 0 */
'use strict';
if (typeof self !== 'undefined') {
module.exports = self;
} else if (typeof window !== 'undefined') {
module.exports = window;
} else {
module.exports = Function('return this')();
}