mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-23 18:34:45 +01:00
10 lines
251 B
JavaScript
10 lines
251 B
JavaScript
'use strict';
|
|
|
|
var implementation = require('./implementation');
|
|
|
|
module.exports = function getPolyfill() {
|
|
if (typeof global !== 'object' || !global || global.Math !== Math || global.Array !== Array) {
|
|
return implementation;
|
|
}
|
|
return global;
|
|
};
|