0.1.0 • Published 3 years ago

sortedindex v0.1.0

Weekly downloads
5
License
MIT
Repository
github
Last release
3 years ago

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