ohctechv3/.svn/pristine/e5/e5632f58b33371fe3582561c65df5a6cf2aad7d1.svn-base
2024-10-28 15:03:36 +05:30

9 lines
243 B
Plaintext

'use strict';
var globalThis = require('globalthis')();
var implementation = require('./implementation');
module.exports = function getPolyfill() {
return typeof globalThis.Iterator === 'function' ? globalThis.Iterator : implementation;
};