UNPKG

es-iterator-helpers

Version:

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

13 lines (10 loc) 258 B
'use strict'; var implementation = require('./implementation'); var getPolyfill = require('./polyfill'); var shim = require('./shim'); module.exports = { __proto__: getPolyfill(), getPolyfill: getPolyfill, implementation: implementation, shim: shim };