Bump to v4.12.0.

This commit is contained in:
John-David Dalton
2016-05-07 12:00:39 -07:00
parent ddde027fd9
commit dbe6a9008c
127 changed files with 1258 additions and 1116 deletions

View File

@@ -19,7 +19,7 @@ var MAX_ARRAY_LENGTH = 4294967295;
* @returns {number} Returns the converted integer.
* @example
*
* _.toLength(3);
* _.toLength(3.2);
* // => 3
*
* _.toLength(Number.MIN_VALUE);
@@ -28,7 +28,7 @@ var MAX_ARRAY_LENGTH = 4294967295;
* _.toLength(Infinity);
* // => 4294967295
*
* _.toLength('3');
* _.toLength('3.2');
* // => 3
*/
function toLength(value) {