basant307/AI_Governance_Project
048
1'use strict';2 3var getPolyfill = require('./polyfill');4var define = require('define-properties');5 6var getIteratorPolyfill = require('../Iterator/polyfill');7 8module.exports = function shimIteratorZipKeyed() {9 var $Iterator = getIteratorPolyfill();10 var polyfill = getPolyfill();11 define(12 $Iterator,13 { zipKeyed: polyfill },14 { zipKeyed: function () { return $Iterator.zipKeyed !== polyfill; } }15 );16 17 return polyfill;18};19 