Rocky_Mountain_Vending/.pnpm-store/v10/files/b7/4b8da7b16add4cb6cbf1077ab4ad9fb3836ba014931bd63adcb2a43988416abbae2207ee35aa1e498b2e309d119ca50de14a6e9112aae6aa0c04cfbf482bea
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
681 B
Text

import { toDate } from "./toDate.js";
import { getFullYear as coreGetFullYear } from "./_core/getFullYear.js";
/**
* The {@link getYear} function options.
*/
/**
* @name getYear
* @category Year Helpers
* @summary Get the year of the given date.
*
* @description
* Get the year of the given date.
*
* @param date - The given date
* @param options - An object with options
*
* @returns The year
*
* @example
* // Which year is 2 July 2014?
* const result = getYear(new Date(2014, 6, 2))
* //=> 2014
*/
export function getYear(date, options) {
return coreGetFullYear(toDate(date, options?.in));
}
// Fallback for modularized imports:
export default getYear;