Files
klz-cables.com/.pnpm-store/v10/files/68/344df1d339958268f62a73d21b2068935de2477f1de221ceb26caf48426108af304a24ec5c99f79700563778ef6a623618ba9bf5f07cdb9acf8e47c2981024
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
678 B
Plaintext

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