Rocky_Mountain_Vending/.pnpm-store/v10/files/80/f33674caa87b03611d8a5ad81121585dbbbc382d43104c8802864709b74ae30117a101c2186f917ea08b9293c37c9680e6e62f270babbe999be442b7f2a075
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

3 lines
127 B
Text

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