Files
klz-cables.com/.pnpm-store/v10/files/15/d6a424404b9dc07eb8b8d35f7a01f0466e68c1d8951492fc7cec84a3943fe60ccd13f61df23444c8160560ab96fc981fab5020d5b5738036cf9f06a20f96c8
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 isMonday} function options.
*/
export interface IsMondayOptions extends ContextOptions<Date> {}
/**
* @name isMonday
* @category Weekday Helpers
* @summary Is the given date Monday?
*
* @description
* Is the given date Monday?
*
* @param date - The date to check
* @param options - An object with options
*
* @returns The date is Monday
*
* @example
* // Is 22 September 2014 Monday?
* const result = isMonday(new Date(2014, 8, 22))
* //=> true
*/
export declare function isMonday(
date: DateArg<Date> & {},
options?: IsMondayOptions | undefined,
): boolean;