Rocky_Mountain_Vending/.pnpm-store/v10/files/dc/cea208ba3b6793c5d152f8ffbf8751654b1bdf17ffe07c7fb1854cd32bd82d52534604653cfd3648d64406ee1c235d2b9818f2f4de7a8ce9946d8108f3fc50
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

38 lines
1,015 B
Text

import { normalizeDates } from "./_lib/normalizeDates.js";
import { getFullYear as coreGetFullYear } from "./_core/getFullYear.js";
/**
* The {@link isSameYear} function options.
*/
/**
* @name isSameYear
* @category Year Helpers
* @summary Are the given dates in the same year?
*
* @description
* Are the given dates in the same year?
*
* @param laterDate - The first date to check
* @param earlierDate - The second date to check
* @param options - An object with options
*
* @returns The dates are in the same year
*
* @example
* // Are 2 September 2014 and 25 September 2014 in the same year?
* const result = isSameYear(new Date(2014, 8, 2), new Date(2014, 8, 25))
* //=> true
*/
export function isSameYear(laterDate, earlierDate, options) {
const [laterDate_, earlierDate_] = normalizeDates(
options?.in,
laterDate,
earlierDate,
);
return coreGetFullYear(laterDate_) === coreGetFullYear(earlierDate_);
}
// Fallback for modularized imports:
export default isSameYear;