Rocky_Mountain_Vending/.pnpm-store/v10/files/dd/266afdea4ac2574c8a3b9fb08ac5f0c26074ab94a1709fd64b42c5986a41e53658336639817bf3bd9e20e4bd8d1f5b32afdd6194e9a8fc84ce53c9276aa545
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

28 lines
796 B
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link isThisMonth} function options.
*/
export interface IsThisMonthOptions extends ContextOptions<Date> {}
/**
* @name isThisMonth
* @category Month Helpers
* @summary Is the given date in the same month as the current date?
* @pure false
*
* @description
* Is the given date in the same month as the current date?
*
* @param date - The date to check
* @param options - An object with options
*
* @returns The date is in this month
*
* @example
* // If today is 25 September 2014, is 15 September 2014 in this month?
* const result = isThisMonth(new Date(2014, 8, 15))
* //=> true
*/
export declare function isThisMonth(
date: DateArg<Date> & {},
options?: IsThisMonthOptions | undefined,
): boolean;