CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
index.js20 linesDownload Raw Back to globalthis
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 
basant307/AI_Governance_Project · CoolFace