Bump to v4.12.0.

This commit is contained in:
John-David Dalton
2016-05-07 11:55:10 -07:00
parent 35805ec250
commit 07c844053e
124 changed files with 587 additions and 480 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) {