mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 00:57:48 +00:00
Bump to v4.8.0.
This commit is contained in:
13
repeat.js
13
repeat.js
@@ -1,4 +1,5 @@
|
||||
import baseRepeat from './_baseRepeat';
|
||||
import isIterateeCall from './_isIterateeCall';
|
||||
import toInteger from './toInteger';
|
||||
import toString from './toString';
|
||||
|
||||
@@ -10,7 +11,8 @@ import toString from './toString';
|
||||
* @since 3.0.0
|
||||
* @category String
|
||||
* @param {string} [string=''] The string to repeat.
|
||||
* @param {number} [n=0] The number of times to repeat the string.
|
||||
* @param {number} [n=1] The number of times to repeat the string.
|
||||
* @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.
|
||||
* @returns {string} Returns the repeated string.
|
||||
* @example
|
||||
*
|
||||
@@ -23,8 +25,13 @@ import toString from './toString';
|
||||
* _.repeat('abc', 0);
|
||||
* // => ''
|
||||
*/
|
||||
function repeat(string, n) {
|
||||
return baseRepeat(toString(string), toInteger(n));
|
||||
function repeat(string, n, guard) {
|
||||
if ((guard ? isIterateeCall(string, n, guard) : n === undefined)) {
|
||||
n = 1;
|
||||
} else {
|
||||
n = toInteger(n);
|
||||
}
|
||||
return baseRepeat(toString(string), n);
|
||||
}
|
||||
|
||||
export default repeat;
|
||||
|
||||
Reference in New Issue
Block a user