Sha256: 160cc40dde0bf0e97b14530df56bc46c7bcc6b9aaf63629647b21e480a795baa

Contents?: true

Size: 659 Bytes

Versions: 265

Compression:

Stored size: 659 Bytes

Contents

var baseFindIndex = require('./_baseFindIndex'),
    baseIsNaN = require('./_baseIsNaN'),
    strictIndexOf = require('./_strictIndexOf');

/**
 * The base implementation of `_.indexOf` without `fromIndex` bounds checks.
 *
 * @private
 * @param {Array} array The array to inspect.
 * @param {*} value The value to search for.
 * @param {number} fromIndex The index to search from.
 * @returns {number} Returns the index of the matched value, else `-1`.
 */
function baseIndexOf(array, value, fromIndex) {
  return value === value
    ? strictIndexOf(array, value, fromIndex)
    : baseFindIndex(array, baseIsNaN, fromIndex);
}

module.exports = baseIndexOf;

Version data entries

265 entries across 263 versions & 29 rubygems

Version Path
trusty-cms-5.0.4 node_modules/lodash/_baseIndexOf.js
appmap-0.71.0 ./node_modules/lodash/_baseIndexOf.js
disco_app-0.16.1 test/dummy/node_modules/lodash/_baseIndexOf.js
appmap-0.70.2 ./node_modules/lodash/_baseIndexOf.js
sumomo-0.8.14 data/sumomo/api_modules/node_modules/lodash/_baseIndexOf.js
appmap-0.70.1 ./node_modules/lodash/_baseIndexOf.js
appmap-0.70.0 ./node_modules/lodash/_baseIndexOf.js
appmap-0.69.0 ./node_modules/lodash/_baseIndexOf.js
sumomo-0.8.13 data/sumomo/api_modules/node_modules/lodash/_baseIndexOf.js
appmap-0.68.2 ./node_modules/lodash/_baseIndexOf.js
appmap-0.68.1 ./node_modules/lodash/_baseIndexOf.js
disco_app-0.15.2 test/dummy/node_modules/lodash/_baseIndexOf.js
appmap-0.68.0 ./node_modules/lodash/_baseIndexOf.js
appmap-0.67.1 ./node_modules/lodash/_baseIndexOf.js
trusty-cms-5.0.3 node_modules/lodash/_baseIndexOf.js
trusty-cms-5.0.2 node_modules/lodash/_baseIndexOf.js
appmap-0.67.0 ./node_modules/lodash/_baseIndexOf.js
disco_app-0.18.4 test/dummy/node_modules/lodash/_baseIndexOf.js
disco_app-0.18.1 test/dummy/node_modules/lodash/_baseIndexOf.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/lodash/_baseIndexOf.js