Rocky_Mountain_Vending/.pnpm-store/v10/files/32/1fa5d869806f5d7ba67f7877bcdc8ffb1eeb58e408f0a394f800117d4685744b615b9b82aa2f5caa07559fc0abcae4ed422e7c0b8b1982adb72c047c031018
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

12 lines
291 B
Text

import { ToObject } from './262';
/**
* https://tc39.es/ecma402/#sec-coerceoptionstoobject
* @param options
* @returns
*/
export function CoerceOptionsToObject(options) {
if (typeof options === 'undefined') {
return Object.create(null);
}
return ToObject(options);
}