Rocky_Mountain_Vending/.pnpm-store/v10/files/11/91777e090557958b1a7f497bf9643e8b109c17d7af0b31024cbcd59d55ab14ac75323ce4761a835a97dacda04930c35cf0b73d28c4267cbc3d175a2e9e5ef2
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

15 lines
425 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CoerceOptionsToObject = CoerceOptionsToObject;
var _262_1 = require("./262");
/**
* https://tc39.es/ecma402/#sec-coerceoptionstoobject
* @param options
* @returns
*/
function CoerceOptionsToObject(options) {
if (typeof options === 'undefined') {
return Object.create(null);
}
return (0, _262_1.ToObject)(options);
}