Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
467 B
Text
19 lines
467 B
Text
import ascending from "./ascending.js";
|
|
import minIndex from "./minIndex.js";
|
|
|
|
export default function leastIndex(values, compare = ascending) {
|
|
if (compare.length === 1) return minIndex(values, compare);
|
|
let minValue;
|
|
let min = -1;
|
|
let index = -1;
|
|
for (const value of values) {
|
|
++index;
|
|
if (min < 0
|
|
? compare(value, value) === 0
|
|
: compare(value, minValue) < 0) {
|
|
minValue = value;
|
|
min = index;
|
|
}
|
|
}
|
|
return min;
|
|
}
|