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