polyfill.js 243 B

12345678
  1. 'use strict';
  2. var globalThis = require('globalthis')();
  3. var implementation = require('./implementation');
  4. module.exports = function getPolyfill() {
  5. return typeof globalThis.Iterator === 'function' ? globalThis.Iterator : implementation;
  6. };