10 lines
240 B
JavaScript
10 lines
240 B
JavaScript
'use strict';
|
|
|
|
var implementation = require('./implementation');
|
|
|
|
var $Iterator = require('../Iterator');
|
|
|
|
module.exports = function getPolyfill() {
|
|
return typeof $Iterator.zipKeyed === 'function' ? $Iterator.zipKeyed : implementation;
|
|
};
|