find-insert-index

0.0.1 • Public • Published

find-insert-index

Find the index to insert an element in array keeping the sort order.

Build Status

Example

var findInsertIndex, comparatorFn;
findInsertIndex = require('find-insert-index');
comparatorFn = function (a, b) {
  return a.id - b.id;
};

findInsertIndex(comparatorFn, [{id: 7}, {id: 8}], {id: 7});
// 1

Readme

Keywords

none

Package Sidebar

Install

npm i find-insert-index

Weekly Downloads

34,541

Version

0.0.1

License

MIT

Last publish

Collaborators

  • jnuno