diff options
Diffstat (limited to 'node_modules/globalthis/polyfill.js')
-rw-r--r-- | node_modules/globalthis/polyfill.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/node_modules/globalthis/polyfill.js b/node_modules/globalthis/polyfill.js deleted file mode 100644 index e2e706b..0000000 --- a/node_modules/globalthis/polyfill.js +++ /dev/null @@ -1,10 +0,0 @@ -'use strict'; - -var implementation = require('./implementation'); - -module.exports = function getPolyfill() { - if (typeof global !== 'object' || !global || global.Math !== Math || global.Array !== Array) { - return implementation; - } - return global; -}; |