source: node_modules/d3-array/src/scan.js@ e4c61dd

Last change on this file since e4c61dd was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 178 bytes
Line 
1import leastIndex from "./leastIndex.js";
2
3export default function scan(values, compare) {
4 const index = leastIndex(values, compare);
5 return index < 0 ? undefined : index;
6}
Note: See TracBrowser for help on using the repository browser.