Rocky_Mountain_Vending/.pnpm-store/v10/files/47/354ae585720c38837036fd3a6751a34968eb51901ed32384eff9f9e5bf5f7a2c708e6435a7ac65550631a9ad3a6f5854e0862ae6a191b41e74c155a080d6f7
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
170 B
Text

'use strict'
const SemVer = require('../classes/semver')
const compare = (a, b, loose) =>
new SemVer(a, loose).compare(new SemVer(b, loose))
module.exports = compare