CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
polyfill.js11 linesDownload Raw Back to globalthis
1'use strict';2 3var implementation = require('./implementation');4 5module.exports = function getPolyfill() {6	if (typeof global !== 'object' || !global || global.Math !== Math || global.Array !== Array) {7		return implementation;8	}9	return global;10};11 
basant307/AI_Governance_Project · CoolFace