Rocky_Mountain_Vending/.pnpm-store/v10/files/18/eec97623b8e6e60ed112981f2b971049c7fc7a9a8ac3cc9accf6f35e6307404c5970fa7e9529b72e3c8a69881361ca0ba161be1baad97186ce71a94f34f37c
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

26 lines
643 B
Text

import type { DateArg } from "./types.js";
/**
* @name isEqual
* @category Common Helpers
* @summary Are the given dates equal?
*
* @description
* Are the given dates equal?
*
* @param dateLeft - The first date to compare
* @param dateRight - The second date to compare
*
* @returns The dates are equal
*
* @example
* // Are 2 July 2014 06:30:45.000 and 2 July 2014 06:30:45.500 equal?
* const result = isEqual(
* new Date(2014, 6, 2, 6, 30, 45, 0),
* new Date(2014, 6, 2, 6, 30, 45, 500)
* )
* //=> false
*/
export declare function isEqual(
leftDate: DateArg<Date> & {},
rightDate: DateArg<Date> & {},
): boolean;