Rocky_Mountain_Vending/.pnpm-store/v10/files/83/680bf2f268abb22b2b5b1d3421e9230193ca60a74ac9b4e8dba1724593d3d67577d2a1fe3cfad47f6657fed4884ed39e881ea45704061ba1a4a3f45fa76f9d
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

18 lines
331 B
Text

'use strict'
const SemVer = require('../classes/semver')
const parse = (version, options, throwErrors = false) => {
if (version instanceof SemVer) {
return version
}
try {
return new SemVer(version, options)
} catch (er) {
if (!throwErrors) {
return null
}
throw er
}
}
module.exports = parse