mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-11 19: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) {
|
function repeat(string, n) {
|
||||||
var result = '';
|
var result = '';
|
||||||
|
string = baseToString(string);
|
||||||
n = +n;
|
n = +n;
|
||||||
|
if (n < 1 || !string || !nativeIsFinite(n)) {
|
||||||
if (n < 1 || string == null || !nativeIsFinite(n)) {
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
string = (string + '');
|
|
||||||
|
|
||||||
// Leverage the exponentiation by squaring algorithm for a faster repeat.
|
// Leverage the exponentiation by squaring algorithm for a faster repeat.
|
||||||
// See http://en.wikipedia.org/wiki/Exponentiation_by_squaring.
|
// See http://en.wikipedia.org/wiki/Exponentiation_by_squaring.
|
||||||
do {
|
do {
|
||||||
|
|||||||
Reference in New Issue
Block a user