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.

sortedIndex.js 626B

123456789101112131415161718192021222324
  1. var baseSortedIndex = require('./_baseSortedIndex');
  2. /**
  3. * Uses a binary search to determine the lowest index at which `value`
  4. * should be inserted into `array` in order to maintain its sort order.
  5. *
  6. * @static
  7. * @memberOf _
  8. * @since 0.1.0
  9. * @category Array
  10. * @param {Array} array The sorted array to inspect.
  11. * @param {*} value The value to evaluate.
  12. * @returns {number} Returns the index at which `value` should be inserted
  13. * into `array`.
  14. * @example
  15. *
  16. * _.sortedIndex([30, 50], 40);
  17. * // => 1
  18. */
  19. function sortedIndex(array, value) {
  20. return baseSortedIndex(array, value);
  21. }
  22. module.exports = sortedIndex;