Files
klz-cables.com/.pnpm-store/v10/files/bf/2a6e407a877de2bf4308b101bac141485ceabee258dad8934210e87e26b7712b1af86ad74a4d972cd2cb417fa0b6d67ee716888104850ea95f828af48f5b11
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
658 B
Plaintext

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;