Rocky_Mountain_Vending/.pnpm-store/v10/files/e7/ee0e13773377e3b4e78d03c913d31096f54b331884c2215c3d7addbaf8521b3b7d1afb6d91b0fe8874983b331af86b191cb55c8530fa6a7c855f889729d5ea
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

48 lines
1.3 KiB
Text

"use strict";
exports.differenceInCalendarQuarters = differenceInCalendarQuarters;
var _index = require("./_lib/normalizeDates.cjs");
var _index2 = require("./getQuarter.cjs");
var _index3 = require("./_core/getFullYear.cjs");
/**
* 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
*/
function differenceInCalendarQuarters(laterDate, earlierDate, options) {
const [laterDate_, earlierDate_] = (0, _index.normalizeDates)(
options?.in,
laterDate,
earlierDate,
);
const yearsDiff =
(0, _index3.getFullYear)(laterDate_) -
(0, _index3.getFullYear)(earlierDate_);
const quartersDiff =
(0, _index2.getQuarter)(laterDate_) - (0, _index2.getQuarter)(earlierDate_);
return yearsDiff * 4 + quartersDiff;
}