source: imaps-frontend/node_modules/array.prototype.flatmap/index.js

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

Update repo after prototype presentation

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