source: frontend/node_modules/es-iterator-helpers/Iterator.zipKeyed/shim.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 428 bytes
Line 
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};
Note: See TracBrowser for help on using the repository browser.