bisect.js 238 B

1234567
  1. import ascending from "./ascending";
  2. import bisector from "./bisector";
  3. var ascendingBisect = bisector(ascending);
  4. export var bisectRight = ascendingBisect.right;
  5. export var bisectLeft = ascendingBisect.left;
  6. export default bisectRight;