basant307/AI_Governance_Project
048
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 