Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/helperStringRepeat.js
2024-12-05 09:33:18 +08:00

12 lines
306 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