source:
node_modules/d3-array/src/scan.js@
ba17441
| Last change on this file since ba17441 was e4c61dd, checked in by , 6 months ago | |
|---|---|
|
|
| File size: 178 bytes | |
| Rev | Line | |
|---|---|---|
| [e4c61dd] | 1 | import leastIndex from "./leastIndex.js"; |
| 2 | ||
| 3 | export 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.
