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