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

@@ -35,7 +35,7 @@ var nativeMax = Math.max,
*/
function inRange(value, start, end) {
start = +start || 0;
if (typeof end === 'undefined') {
if (end === undefined) {
end = start;
start = 0;
} else {

View File

@@ -34,7 +34,7 @@ var nativeMin = Math.min,
*/
function random(min, max, floating) {
if (floating && isIterateeCall(min, max, floating)) {
max = floating = null;
max = floating = undefined;
}
var noMin = min == null,
noMax = max == null;