Make _.repeat default n to 1 instead of 0.

This commit is contained in:
John-David Dalton
2016-04-01 17:20:32 -07:00
parent c21174f7f9
commit 930b034da5
2 changed files with 40 additions and 12 deletions

View File

@@ -13398,7 +13398,8 @@
* @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
*
@@ -13411,8 +13412,13 @@
* _.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);
}
/**