Rocky_Mountain_Vending/.pnpm-store/v10/files/e4/b09e83fda74cb4a386b2fe2e36ca20efc66321338d72ca1cf2bb80dd2f78ef97594bbae7660b86952f9283fec9ea97b2032472c4f5dc8742297b73bf12ab71
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

33 lines
1 KiB
Text

import { getRoundingMethod } from "./_lib/getRoundingMethod.js";
import { differenceInMonths } from "./differenceInMonths.js";
/**
* The {@link differenceInQuarters} function options.
*/
/**
* @name differenceInQuarters
* @category Quarter Helpers
* @summary Get the number of quarters between the given dates.
*
* @description
* Get the number of 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 full quarters
*
* @example
* // How many full quarters are between 31 December 2013 and 2 July 2014?
* const result = differenceInQuarters(new Date(2014, 6, 2), new Date(2013, 11, 31))
* //=> 2
*/
export function differenceInQuarters(laterDate, earlierDate, options) {
const diff = differenceInMonths(laterDate, earlierDate, options) / 3;
return getRoundingMethod(options?.roundingMethod)(diff);
}
// Fallback for modularized imports:
export default differenceInQuarters;