Rocky_Mountain_Vending/.pnpm-store/v10/files/e0/70850a3e54f93877a50ff9134b29bd0fbfcdf8bf83f2d0c275190fb13e1cba27291838e9335e81fdc6c04c8d768c60428a8818bf70797ba8c5e34e8a317e7a
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

31 lines
867 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)());
}