Rocky_Mountain_Vending/.pnpm-store/v10/files/dd/4a47396601c54cbad88535b1206a767617d0de9a379aea7bdd21242d7f238aa16aa41628bb477ca22ef4584c95cf99b450b74dfb19c662002a5fd88af7d133
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

7 lines
144 B
Text

export default function descending(a, b) {
return a == null || b == null ? NaN
: b < a ? -1
: b > a ? 1
: b >= a ? 0
: NaN;
}