Rocky_Mountain_Vending/.pnpm-store/v10/files/63/a6bc075e2c3195d4cfc5749982bfa2c0b8cb25d545324d5de657bac8a77eeecbbe3a29c429ba3bf3546d4c418cff3b6e784513f1c1078aab40cd98105ef8ee
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

29 lines
632 B
Text

"use strict";
exports.getDate = getDate;
var _index = require("./toDate.cjs");
/**
* The {@link getDate} function options.
*/
/**
* @name getDate
* @category Day Helpers
* @summary Get the day of the month of the given date.
*
* @description
* Get the day of the month of the given date.
*
* @param date - The given date
* @param options - An object with options.
*
* @returns The day of month
*
* @example
* // Which day of the month is 29 February 2012?
* const result = getDate(new Date(2012, 1, 29))
* //=> 29
*/
function getDate(date, options) {
return (0, _index.toDate)(date, options?.in).getDate();
}