Rocky_Mountain_Vending/.pnpm-store/v10/files/af/860c6adb8867f5e38079cd14eff4056641c61804d74b9973afd919b5b703d5eea12aa60c592a3bf96c4d8bec757f9062fa558acaadd99c0f099581cb97fe91
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

46 lines
1.3 KiB
Text

import { normalizeDates } from "./_lib/normalizeDates.js";
import { getQuarter } from "./getQuarter.js";
import { getFullYear as coreGetFullYear } from "./_core/getFullYear.js";
/**
* The {@link differenceInCalendarQuarters} function options.
*/
/**
* @name differenceInCalendarQuarters
* @category Quarter Helpers
* @summary Get the number of calendar quarters between the given dates.
*
* @description
* Get the number of calendar quarters between the given dates.
*
* @param laterDate - The later date
* @param earlierDate - The earlier date
* @param options - An object with options
*
* @returns The number of calendar quarters
*
* @example
* // How many calendar quarters are between 31 December 2013 and 2 July 2014?
* const result = differenceInCalendarQuarters(
* new Date(2014, 6, 2),
* new Date(2013, 11, 31)
* )
* //=> 3
*/
export function differenceInCalendarQuarters(laterDate, earlierDate, options) {
const [laterDate_, earlierDate_] = normalizeDates(
options?.in,
laterDate,
earlierDate,
);
const yearsDiff = coreGetFullYear(laterDate_) - coreGetFullYear(earlierDate_);
const quartersDiff = getQuarter(laterDate_) - getQuarter(earlierDate_);
return yearsDiff * 4 + quartersDiff;
}
// Fallback for modularized imports:
export default differenceInCalendarQuarters;