mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 08:37:49 +00:00
Use baseToString in _.repeat.
This commit is contained in:
committed by
jdalton
parent
d4bcd4ab0c
commit
a9a95de02d
@@ -9603,13 +9603,11 @@
|
||||
*/
|
||||
function repeat(string, n) {
|
||||
var result = '';
|
||||
string = baseToString(string);
|
||||
n = +n;
|
||||
|
||||
if (n < 1 || string == null || !nativeIsFinite(n)) {
|
||||
if (n < 1 || !string || !nativeIsFinite(n)) {
|
||||
return result;
|
||||
}
|
||||
string = (string + '');
|
||||
|
||||
// Leverage the exponentiation by squaring algorithm for a faster repeat.
|
||||
// See http://en.wikipedia.org/wiki/Exponentiation_by_squaring.
|
||||
do {
|
||||
|
||||
Reference in New Issue
Block a user