source: imaps-frontend/node_modules/string.prototype.repeat/polyfill.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: 212 bytes
Line 
1/*! https://mths.be/repeat v1.0.0 by @mathias */
2
3'use strict';
4
5var implementation = require('./implementation');
6
7module.exports = function getPolyfill() {
8 return String.prototype.repeat || implementation;
9};
Note: See TracBrowser for help on using the repository browser.