Files
ETB/ETB-FrontEnd/node_modules/globalthis/polyfill.js
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

11 lines
251 B
JavaScript

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