Files
30-seconds-of-code/node_modules/left-pad/perf/es6Repeat.js
2019-08-20 15:52:05 +02:00

14 lines
216 B
JavaScript

'use strict';
module.exports = function (str, len, ch) {
str = str + '';
len = len - str.length;
if (len <= 0) return str;
if (!ch && ch !== 0) ch = ' ';
ch = ch + '';
return ch.repeat(len) + str;
};