Files
Remote-Control-Center/mc_test/node_modules/globalthis/polyfill.js
2025-11-25 09:56:15 +03:00

11 lines
251 B
JavaScript
Executable File

'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;
};