UNPKG

@onesy/algorithms

Version:
7 lines (6 loc) 244 B
import { TMethod } from '@onesy/models'; export interface IBinarySearchOptions { sort?: boolean; sortMethod?: TMethod; } export default function binarySearch(array: Array<number>, value: number, options?: IBinarySearchOptions): number;