Rocky_Mountain_Vending/.pnpm-store/v10/files/d8/84a4501ccaa4f1e5d4206ab3214bb2038fcf6e59c163e71d7c1fba84c9098ae8f108c9a0e1794ed4e34dd38adaeb49a1318a438b51d415d35a0b3a4b2a441f
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

17 lines
338 B
Text

'use strict'
// parse out just the options we care about
const looseOption = Object.freeze({ loose: true })
const emptyOpts = Object.freeze({ })
const parseOptions = options => {
if (!options) {
return emptyOpts
}
if (typeof options !== 'object') {
return looseOption
}
return options
}
module.exports = parseOptions