source:
imaps-frontend/node_modules/string.prototype.repeat/polyfill.js
Last change on this file was d565449, checked in by , 4 weeks ago | |
---|---|
|
|
File size: 212 bytes |
Line | |
---|---|
1 | /*! https://mths.be/repeat v1.0.0 by @mathias */ |
2 | |
3 | 'use strict'; |
4 | |
5 | var implementation = require('./implementation'); |
6 | |
7 | module.exports = function getPolyfill() { |
8 | return String.prototype.repeat || implementation; |
9 | }; |
Note:
See TracBrowser
for help on using the repository browser.