mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
657 B
24 lines
657 B
10 years ago
|
/**
|
||
|
* Gets the index at which the first occurrence of `NaN` is found in `array`.
|
||
|
*
|
||
|
* @private
|
||
|
* @param {Array} array The array to search.
|
||
|
* @param {number} fromIndex The index to search from.
|
||
|
* @param {boolean} [fromRight] Specify iterating from right to left.
|
||
|
* @returns {number} Returns the index of the matched `NaN`, else `-1`.
|
||
|
*/
|
||
|
function indexOfNaN(array, fromIndex, fromRight) {
|
||
|
var length = array.length,
|
||
|
index = fromIndex + (fromRight ? 0 : -1);
|
||
|
|
||
|
while ((fromRight ? index-- : ++index < length)) {
|
||
|
var other = array[index];
|
||
|
if (other !== other) {
|
||
|
return index;
|
||
|
}
|
||
|
}
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
module.exports = indexOfNaN;
|