Rocky_Mountain_Vending/.pnpm-store/v10/files/2b/5546a85e4915b8987d96a5528fd1473cc4aa2252354f97376e1504972e942d0e24c72e93392247138df5b84071d8634506031f7c8ca5c8c472e7095ea3a380
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

6 lines
231 B
Text

'use strict'
// Determine if version is greater than all the versions possible in the range.
const outside = require('./outside')
const gtr = (version, range, options) => outside(version, range, '>', options)
module.exports = gtr