Rocky_Mountain_Vending/.pnpm-store/v10/files/d8/88d7c49e0f1d0f4f4495a1cf25ec628c5c0261b5b3783a9597a632afacaa8c78b9306ca937daf4490da8b4aeba583c9d8af3d59243a28173c723bdfcb2f901
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

27 lines
688 B
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link isWednesday} function options.
*/
export interface IsWednesdayOptions extends ContextOptions<Date> {}
/**
* @name isWednesday
* @category Weekday Helpers
* @summary Is the given date Wednesday?
*
* @description
* Is the given date Wednesday?
*
* @param date - The date to check
* @param options - An object with options
*
* @returns The date is Wednesday
*
* @example
* // Is 24 September 2014 Wednesday?
* const result = isWednesday(new Date(2014, 8, 24))
* //=> true
*/
export declare function isWednesday(
date: DateArg<Date> & {},
options?: IsWednesdayOptions | undefined,
): boolean;