Rocky_Mountain_Vending/.pnpm-store/v10/files/30/8fdef1e35a89f812bc6e61378397d8734748150b3f6e420fb6c2d9d31bd7a82d48f4c4b97d4b7fcd2ca70862480a46c44887396b325ae5b83bb8af6537a016
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
455 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetOptionsObject = GetOptionsObject;
/**
* https://tc39.es/ecma402/#sec-getoptionsobject
* @param options
* @returns
*/
function GetOptionsObject(options) {
if (typeof options === 'undefined') {
return Object.create(null);
}
if (typeof options === 'object') {
return options;
}
throw new TypeError('Options must be an object');
}