Ohm-Management - Projektarbeit B-ME
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.

_strictIndexOf.js 600B

1234567891011121314151617181920212223
  1. /**
  2. * A specialized version of `_.indexOf` which performs strict equality
  3. * comparisons of values, i.e. `===`.
  4. *
  5. * @private
  6. * @param {Array} array The array to inspect.
  7. * @param {*} value The value to search for.
  8. * @param {number} fromIndex The index to search from.
  9. * @returns {number} Returns the index of the matched value, else `-1`.
  10. */
  11. function strictIndexOf(array, value, fromIndex) {
  12. var index = fromIndex - 1,
  13. length = array.length;
  14. while (++index < length) {
  15. if (array[index] === value) {
  16. return index;
  17. }
  18. }
  19. return -1;
  20. }
  21. module.exports = strictIndexOf;