Rocky_Mountain_Vending/.pnpm-store/v10/files/27/e3050665c3b67be9739a556a22ee540031c7dc76bf1724633d0dc177942ace3b68a72bfd18b99972b663019dcbe1c4c16cef2c6462c2a9724e916f51792fba
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

30 lines
604 B
Text

import { toDate } from "./toDate.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 toDate(date, options?.in).getFullYear();
}
// Fallback for modularized imports:
export default getYear;