Files
klz-cables.com/.pnpm-store/v10/files/d8/88d7c49e0f1d0f4f4495a1cf25ec628c5c0261b5b3783a9597a632afacaa8c78b9306ca937daf4490da8b4aeba583c9d8af3d59243a28173c723bdfcb2f901
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

28 lines
688 B
Plaintext

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;