summaryrefslogtreecommitdiff
path: root/client/node_modules/globalthis/polyfill.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/node_modules/globalthis/polyfill.js')
-rw-r--r--client/node_modules/globalthis/polyfill.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/client/node_modules/globalthis/polyfill.js b/client/node_modules/globalthis/polyfill.js
deleted file mode 100644
index e2e706b..0000000
--- a/client/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;
-};