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
470 B
Text
19 lines
470 B
Text
import ascending from "./ascending.js";
|
|
import maxIndex from "./maxIndex.js";
|
|
|
|
export default function greatestIndex(values, compare = ascending) {
|
|
if (compare.length === 1) return maxIndex(values, compare);
|
|
let maxValue;
|
|
let max = -1;
|
|
let index = -1;
|
|
for (const value of values) {
|
|
++index;
|
|
if (max < 0
|
|
? compare(value, value) === 0
|
|
: compare(value, maxValue) > 0) {
|
|
maxValue = value;
|
|
max = index;
|
|
}
|
|
}
|
|
return max;
|
|
}
|