Rocky_Mountain_Vending/.pnpm-store/v10/files/62/96f153a1fce81dd6c36fa319b4557f8f0fef89dfb1743193ec8cb31de9251acb6eee322c3d010255835e9e25b097e39da6dd29b069adfd9cf4197f864c20b9
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
756 B
Text

"use strict";
exports.getQuarter = getQuarter;
var _index = require("./toDate.cjs");
var _index2 = require("./_core/getMonth.cjs");
/**
* The {@link getQuarter} function options.
*/
/**
* @name getQuarter
* @category Quarter Helpers
* @summary Get the year quarter of the given date.
*
* @description
* Get the year quarter of the given date.
*
* @param date - The given date
* @param options - An object with options
*
* @returns The quarter
*
* @example
* // Which quarter is 2 July 2014?
* const result = getQuarter(new Date(2014, 6, 2));
* //=> 3
*/
function getQuarter(date, options) {
const _date = (0, _index.toDate)(date, options?.in);
const quarter = Math.trunc((0, _index2.getMonth)(_date) / 3) + 1;
return quarter;
}