Bump to v3.10.0.

This commit is contained in:
John-David Dalton
2015-12-16 17:52:15 -08:00
parent 32393ae520
commit 75c633becb
121 changed files with 1504 additions and 1168 deletions

View File

@@ -1,10 +1,8 @@
define(['../internal/baseToString', '../internal/root'], function(baseToString, root) {
/** Native method references. */
var floor = Math.floor;
/* Native method references for those with the same name as other `lodash` methods. */
var nativeIsFinite = root.isFinite;
var nativeFloor = Math.floor,
nativeIsFinite = root.isFinite;
/**
* Repeats the given string `n` times.
@@ -39,7 +37,7 @@ define(['../internal/baseToString', '../internal/root'], function(baseToString,
if (n % 2) {
result += string;
}
n = floor(n / 2);
n = nativeFloor(n / 2);
string += string;
} while (n);