source: imaps-frontend/node_modules/globalthis/index.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • 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.