mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 10:27:49 +00:00
More comment updates
[ci skip]
This commit is contained in:
committed by
John-David Dalton
parent
b19033a375
commit
85fd650f5c
@@ -485,8 +485,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base implementation of `_.indexOf` without support for `fromIndex`
|
* The base implementation of `_.indexOf` without support for binary searches.
|
||||||
* bounds checks and binary searches.
|
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {Array} array The array to search.
|
* @param {Array} array The array to search.
|
||||||
@@ -964,7 +963,7 @@
|
|||||||
var NEGATIVE_INFINITY = Number.NEGATIVE_INFINITY,
|
var NEGATIVE_INFINITY = Number.NEGATIVE_INFINITY,
|
||||||
POSITIVE_INFINITY = Number.POSITIVE_INFINITY;
|
POSITIVE_INFINITY = Number.POSITIVE_INFINITY;
|
||||||
|
|
||||||
/** Used as references for the max length and index of an array. */
|
/** Used as references for the maximum length and index of an array. */
|
||||||
var MAX_ARRAY_LENGTH = Math.pow(2, 32) - 1,
|
var MAX_ARRAY_LENGTH = Math.pow(2, 32) - 1,
|
||||||
MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1,
|
MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1,
|
||||||
HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1;
|
HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user