Rocky_Mountain_Vending/.pnpm-store/v10/files/d4/27c71a470f25d187a844a187fbdb83bf789dc55d5efdf1c20462fc1f22a01124dc2cde6b871a21565298e772bcb630423253498481c1616c7653fe23bf0c79
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
651 B
Text

"use strict";
exports.getYear = getYear;
var _index = require("./toDate.cjs");
var _index2 = require("./_core/getFullYear.cjs");
/**
* 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
*/
function getYear(date, options) {
return (0, _index2.getFullYear)((0, _index.toDate)(date, options?.in));
}