source: imaps-frontend/node_modules/es-iterator-helpers/Iterator.from/index.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 379 bytes
Line 
1'use strict';
2
3var callBind = require('call-bind');
4var define = require('define-properties');
5
6var implementation = require('./implementation');
7var getPolyfill = require('./polyfill');
8var shim = require('./shim');
9
10var bound = callBind(getPolyfill(), null);
11
12define(bound, {
13 getPolyfill: getPolyfill,
14 implementation: implementation,
15 shim: shim
16});
17
18module.exports = bound;
Note: See TracBrowser for help on using the repository browser.