UNPKG

@extra-array/bsearchr

Version:

Binary searches rightmost value in sorted array.

5 lines (4 loc) 74 B
function cmp(a, b) { return a<b? -1:(a>b? 1:0); } module.exports = cmp;