UNPKG

cli-util

Version:
12 lines (11 loc) 294 B
/** * Repeat a string. * * @param len The number of times to repeat. * @param str The string to repeat, default is a space. */ module.exports = function repeat(len, str) { len = typeof len !== 'number' ? 2 : len; len = Math.abs(len); return new Array(len + 1).join(str || ' '); }