Rocky_Mountain_Vending/.pnpm-store/v10/files/ec/e125d77eba345998eaf7f51790326c1f0234e8a32f0fdcafca102cd10832e3c6ae1381dcaa6b374607978a4f80bb83383d0f1300ab4975e8b9aa6711da6e29
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
694 B
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link isToday} function options.
*/
export interface IsTodayOptions extends ContextOptions<Date> {}
/**
* @name isToday
* @category Day Helpers
* @summary Is the given date today?
* @pure false
*
* @description
* Is the given date today?
*
* @param date - The date to check
* @param options - An object with options
*
* @returns The date is today
*
* @example
* // If today is 6 October 2014, is 6 October 14:00:00 today?
* const result = isToday(new Date(2014, 9, 6, 14, 0))
* //=> true
*/
export declare function isToday(
date: DateArg<Date> & {},
options?: IsTodayOptions | undefined,
): boolean;