Rocky_Mountain_Vending/.pnpm-store/v10/files/67/c5ef9999e55432f41d40377697ecff718fd7078e7bc8e546757a606f3411354e87fe702b8342c7ea25b335ed35694fb6d08521aa924d9e39e7fec2608eb509
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

20 lines
487 B
Text

import type { DateArg } from "./types.js";
/**
* @name isPast
* @category Common Helpers
* @summary Is the given date in the past?
* @pure false
*
* @description
* Is the given date in the past?
*
* @param date - The date to check
*
* @returns The date is in the past
*
* @example
* // If today is 6 October 2014, is 2 July 2014 in the past?
* const result = isPast(new Date(2014, 6, 2))
* //=> true
*/
export declare function isPast(date: DateArg<Date> & {}): boolean;