basant307/AI_Governance_Project
048
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: shim17});18 19module.exports = getGlobal;20 