Skip to content

arcatdmz/sortedIndex

Repository files navigation

sortedindex

build npm version

sortedindex is a simple npm package that provides a binary search function for a sorted array.

sortedindex は二分探索を行う関数が入った npm パッケージです。

Usage / 使い方

npm install sortedindex
import { sortedIndex } from "sortedindex";

const i1 = sortedIndex([1, 2, 4, 5], 3); // 2
const i2 = sortedIndex(["a", "b", "d", "e"], "c", (o) => o.charCodeAt(0)); // 2

Credits / 開発者


Copyright (c) 2021 Jun Kato

About

A simple npm package that provides a binary search function for a sorted array.

Topics

Resources

License

Stars

Watchers

Forks