Rocky_Mountain_Vending/.pnpm-store/v10/files/fd/26a6a8a895e59e575578c3a0cbc148d1451e56f76926e8d59a8019ece837397aae7d8edabb288cd03920bbae34676cab3b291d3a43cab59371484a3d0215c1
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

21 lines
617 B
Text

import type { DateArg } from "./types.js";
/**
* @name isThisSecond
* @category Second Helpers
* @summary Is the given date in the same second as the current date?
* @pure false
*
* @description
* Is the given date in the same second as the current date?
*
* @param date - The date to check
*
* @returns The date is in this second
*
* @example
* // If now is 25 September 2014 18:30:15.500,
* // is 25 September 2014 18:30:15.000 in this second?
* const result = isThisSecond(new Date(2014, 8, 25, 18, 30, 15))
* //=> true
*/
export declare function isThisSecond(date: DateArg<Date> & {}): boolean;