UNPKG

es-iterator-helpers

Version:

An ESnext spec-compliant iterator helpers shim/polyfill/replacement that works as far down as ES3.

19 lines (13 loc) 355 B
'use strict'; var define = require('define-properties'); var globalThis = require('globalthis')(); var getPolyfill = require('./polyfill'); module.exports = function shimIterator() { var polyfill = getPolyfill(); define( globalThis, { Iterator: polyfill }, { Iterator: function () { return Iterator !== polyfill; } } ); return polyfill; };