source: frontend/node_modules/globalthis/index.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 408 bytes
Line 
1'use strict';
2
3var defineProperties = require('define-properties');
4
5var implementation = require('./implementation');
6var getPolyfill = require('./polyfill');
7var shim = require('./shim');
8
9var polyfill = getPolyfill();
10
11var getGlobal = function () { return polyfill; };
12
13defineProperties(getGlobal, {
14 getPolyfill: getPolyfill,
15 implementation: implementation,
16 shim: shim
17});
18
19module.exports = getGlobal;
Note: See TracBrowser for help on using the repository browser.