12 lines
317 B
JavaScript
12 lines
317 B
JavaScript
var staticParseInt = require('./staticParseInt')
|
|
|
|
function helperStringRepeat (str, count) {
|
|
if (str.repeat) {
|
|
return str.repeat(count)
|
|
}
|
|
var list = isNaN(count) ? [] : new Array(staticParseInt(count))
|
|
return list.join(str) + (list.length > 0 ? str : '')
|
|
}
|
|
|
|
module.exports = helperStringRepeat
|