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>
16 lines
No EOL
607 B
Text
16 lines
No EOL
607 B
Text
import { defaultDateLib } from "../classes/DateLib.js";
|
|
/**
|
|
* Formats the month for the dropdown option label.
|
|
*
|
|
* @defaultValue The localized full month name.
|
|
* @param month The date representing the month.
|
|
* @param dateLib The date library to use for formatting. Defaults to
|
|
* `defaultDateLib`.
|
|
* @returns The formatted month name as a string.
|
|
* @group Formatters
|
|
* @see https://daypicker.dev/docs/translation#custom-formatters
|
|
*/
|
|
export function formatMonthDropdown(month, dateLib = defaultDateLib) {
|
|
return dateLib.format(month, "LLLL");
|
|
}
|
|
//# sourceMappingURL=formatMonthDropdown.js.map |