Bump to v3.10.0.

This commit is contained in:
jdalton
2015-06-14 22:21:45 -07:00
parent 10d5566cf2
commit b97a9a3da0
121 changed files with 1412 additions and 1168 deletions

View File

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