Initial commit
[yaffs-website] / node_modules / grunt-contrib-watch / node_modules / globule / node_modules / lodash / _isIndex.js
1 /** Used as references for various `Number` constants. */
2 var MAX_SAFE_INTEGER = 9007199254740991;
3
4 /** Used to detect unsigned integer values. */
5 var reIsUint = /^(?:0|[1-9]\d*)$/;
6
7 /**
8  * Checks if `value` is a valid array-like index.
9  *
10  * @private
11  * @param {*} value The value to check.
12  * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
13  * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
14  */
15 function isIndex(value, length) {
16   length = length == null ? MAX_SAFE_INTEGER : length;
17   return !!length &&
18     (typeof value == 'number' || reIsUint.test(value)) &&
19     (value > -1 && value % 1 == 0 && value < length);
20 }
21
22 module.exports = isIndex;