UNPKG

xe-utils

Version:

JavaScript 函数库、工具类

17 lines (13 loc) 357 B
import toValueString from './toValueString' import helperStringRepeat from './helperStringRepeat' /** * 将字符串重复 n 次 * * @param {String} str 字符串 * @param {Number} count 次数 * @return {String} */ function repeat (str, count) { return helperStringRepeat(toValueString(str), count) } export default repeat