Rocky_Mountain_Vending/.pnpm-store/v10/files/bf/2a6e407a877de2bf4308b101bac141485ceabee258dad8934210e87e26b7712b1af86ad74a4d972cd2cb417fa0b6d67ee716888104850ea95f828af48f5b11
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
658 B
Text

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