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:
460 bytes
|
Line | |
---|
1 | /*! https://mths.be/repeat v1.0.0 by @mathias */
|
---|
2 |
|
---|
3 | 'use strict';
|
---|
4 |
|
---|
5 | var callBind = require('es-abstract/helpers/callBind');
|
---|
6 | var define = require('define-properties');
|
---|
7 |
|
---|
8 | var implementation = require('./implementation');
|
---|
9 | var getPolyfill = require('./polyfill');
|
---|
10 | var shim = require('./shim');
|
---|
11 |
|
---|
12 | var boundRepeat = callBind(getPolyfill());
|
---|
13 |
|
---|
14 | define(boundRepeat, {
|
---|
15 | getPolyfill: getPolyfill,
|
---|
16 | implementation: implementation,
|
---|
17 | shim: shim
|
---|
18 | });
|
---|
19 |
|
---|
20 | module.exports = boundRepeat;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.