Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/lodash/sortedIndex.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

24 lines (22 sloc)
626 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var baseSortedIndex = require('./_baseSortedIndex'); | |
/** | |
* Uses a binary search to determine the lowest index at which `value` | |
* should be inserted into `array` in order to maintain its sort order. | |
* | |
* @static | |
* @memberOf _ | |
* @since 0.1.0 | |
* @category Array | |
* @param {Array} array The sorted array to inspect. | |
* @param {*} value The value to evaluate. | |
* @returns {number} Returns the index at which `value` should be inserted | |
* into `array`. | |
* @example | |
* | |
* _.sortedIndex([30, 50], 40); | |
* // => 1 | |
*/ | |
function sortedIndex(array, value) { | |
return baseSortedIndex(array, value); | |
} | |
module.exports = sortedIndex; |