Permalink
January 18, 2023 20:26
Newer
100644
19 lines (13 sloc)
408 Bytes
Ignoring revisions in .git-blame-ignore-revs.
1
'use strict';
2
3
var defineProperties = require('define-properties');
4
5
var implementation = require('./implementation');
6
var getPolyfill = require('./polyfill');
7
var shim = require('./shim');
8
9
var polyfill = getPolyfill();
10
11
var getGlobal = function () { return polyfill; };
12
13
defineProperties(getGlobal, {
14
getPolyfill: getPolyfill,
15
implementation: implementation,
16
shim: shim
17
});
18
19
module.exports = getGlobal;