mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 07:17:50 +00:00
30 lines
622 B
JavaScript
30 lines
622 B
JavaScript
import baseRepeat from './.internal/baseRepeat.js'
|
|
import toInteger from './toInteger.js'
|
|
import toString from './toString.js'
|
|
|
|
/**
|
|
* Repeats the given string `n` times.
|
|
*
|
|
* @since 3.0.0
|
|
* @category String
|
|
* @param {string} [string=''] The string to repeat.
|
|
* @param {number} [n=1] The number of times to repeat the string.
|
|
* @returns {string} Returns the repeated string.
|
|
* @example
|
|
*
|
|
* repeat('*', 3)
|
|
* // => '***'
|
|
*
|
|
* repeat('abc', 2)
|
|
* // => 'abcabc'
|
|
*
|
|
* repeat('abc', 0)
|
|
* // => ''
|
|
*/
|
|
function repeat(string, n) {
|
|
n = toInteger(n)
|
|
return baseRepeat(toString(string), n)
|
|
}
|
|
|
|
export default repeat
|