CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
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 
basant307/AI_Governance_Project · CoolFace