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 |
|
---|
3 | var define = require('define-properties');
|
---|
4 | var callBind = require('call-bind');
|
---|
5 |
|
---|
6 | var implementation = require('./implementation');
|
---|
7 | var getPolyfill = require('./polyfill');
|
---|
8 | var polyfill = getPolyfill();
|
---|
9 | var shim = require('./shim');
|
---|
10 |
|
---|
11 | var boundFlatMap = callBind(polyfill);
|
---|
12 |
|
---|
13 | define(boundFlatMap, {
|
---|
14 | getPolyfill: getPolyfill,
|
---|
15 | implementation: implementation,
|
---|
16 | shim: shim
|
---|
17 | });
|
---|
18 |
|
---|
19 | module.exports = boundFlatMap;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.