Rocky_Mountain_Vending/.pnpm-store/v10/files/21/4a0d6211d0061deb0868209eee10a50341e7a212f74daa7d561f724d6d21818065834e3907bbe101ca308808a71395fb462dcf03c91c28fd695a99f3e716cc
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
508 B
Text

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