Rocky_Mountain_Vending/.pnpm-store/v10/files/cf/607ce68cd5e00767a2bd0f64f862b4e23fcb5e70243d9831f74f566a195ce06843df7fd68896a2d3126dc8d2ee02d63c9d73a8433ca421ce36101c28bd9aa7
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

32 lines
868 B
Text

"use strict";
exports.getDefaultOptions = getDefaultOptions;
var _index = require("./_lib/defaultOptions.cjs");
/**
* @name getDefaultOptions
* @category Common Helpers
* @summary Get default options.
* @pure false
*
* @description
* Returns an object that contains defaults for
* `options.locale`, `options.weekStartsOn` and `options.firstWeekContainsDate`
* arguments for all functions.
*
* You can change these with [setDefaultOptions](https://date-fns.org/docs/setDefaultOptions).
*
* @returns The default options
*
* @example
* const result = getDefaultOptions()
* //=> {}
*
* @example
* setDefaultOptions({ weekStarsOn: 1, firstWeekContainsDate: 4 })
* const result = getDefaultOptions()
* //=> { weekStarsOn: 1, firstWeekContainsDate: 4 }
*/
function getDefaultOptions() {
return Object.assign({}, (0, _index.getDefaultOptions)());
}