polyfill.js 232 B

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