Sha256: 93c96ecc45bb71cb5221840409ea77982851daaab3b82b0e737a99c4a8f500fb

Contents?: true

Size: 1.61 KB

Versions: 153

Compression:

Stored size: 1.61 KB

Contents

var binaryIndex = require('../internal/binaryIndex'),
    indexOfNaN = require('../internal/indexOfNaN');

/* Native method references for those with the same name as other `lodash` methods. */
var nativeMax = Math.max,
    nativeMin = Math.min;

/**
 * This method is like `_.indexOf` except that it iterates over elements of
 * `array` from right to left.
 *
 * @static
 * @memberOf _
 * @category Array
 * @param {Array} array The array to search.
 * @param {*} value The value to search for.
 * @param {boolean|number} [fromIndex=array.length-1] The index to search from
 *  or `true` to perform a binary search on a sorted array.
 * @returns {number} Returns the index of the matched value, else `-1`.
 * @example
 *
 * _.lastIndexOf([1, 2, 1, 2], 2);
 * // => 3
 *
 * // using `fromIndex`
 * _.lastIndexOf([1, 2, 1, 2], 2, 2);
 * // => 1
 *
 * // performing a binary search
 * _.lastIndexOf([1, 1, 2, 2], 2, true);
 * // => 3
 */
function lastIndexOf(array, value, fromIndex) {
  var length = array ? array.length : 0;
  if (!length) {
    return -1;
  }
  var index = length;
  if (typeof fromIndex == 'number') {
    index = (fromIndex < 0 ? nativeMax(length + fromIndex, 0) : nativeMin(fromIndex || 0, length - 1)) + 1;
  } else if (fromIndex) {
    index = binaryIndex(array, value, true) - 1;
    var other = array[index];
    if (value === value ? (value === other) : (other !== other)) {
      return index;
    }
    return -1;
  }
  if (value !== value) {
    return indexOfNaN(array, index, true);
  }
  while (index--) {
    if (array[index] === value) {
      return index;
    }
  }
  return -1;
}

module.exports = lastIndexOf;

Version data entries

153 entries across 80 versions & 8 rubygems

Version Path
ilog-0.4.1 node_modules/contents/node_modules/lodash/array/lastIndexOf.js
ilog-0.4.1 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/array/lastIndexOf.js
ilog-0.4.1 node_modules/babel/node_modules/lodash/array/lastIndexOf.js
ilog-0.4.0 node_modules/babel/node_modules/lodash/array/lastIndexOf.js
ilog-0.4.0 node_modules/contents/node_modules/lodash/array/lastIndexOf.js
ilog-0.4.0 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/array/lastIndexOf.js
ilog-0.3.3 node_modules/babel/node_modules/lodash/array/lastIndexOf.js
ilog-0.3.3 node_modules/contents/node_modules/lodash/array/lastIndexOf.js
ilog-0.3.3 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/array/lastIndexOf.js
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/lastIndexOf.js
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/inquirer/node_modules/lodash/array/lastIndexOf.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/lastIndexOf.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/inquirer/node_modules/lodash/array/lastIndexOf.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/lastIndexOf.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/inquirer/node_modules/lodash/array/lastIndexOf.js
xcodebuild-helper-1.2.5 externals/ios-sim-master/node_modules/lodash/array/lastIndexOf.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/lastIndexOf.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/inquirer/node_modules/lodash/array/lastIndexOf.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/array/lastIndexOf.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/inquirer/node_modules/lodash/array/lastIndexOf.js