isZonedWeekend
Signature
Section titled “Signature”isZonedWeekend(value: string, locale: string): booleanimport { isZonedWeekend } from "@northguild/gmt/zoned/compare";Return true when value’s local calendar day falls on a weekend for locale.
- Uses
Intl.Locale.prototype.weekInfoto resolve which ISO weekday numbers count as “weekend” for the locale (e.g. en-US: Sat/Sun, he-IL/ar-SA: Fri/Sat). - Checks the ZonedDateTime’s own local day of week — no separate timezone conversion needed, since
valuealready carries its IANA timezone. - Falls back to Saturday/Sunday if the runtime’s
weekInfodata doesn’t resolve a weekend for the locale. - Returns false if
valueorlocaleis invalid.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
value |
string |
ISO ZonedDateTime string |
locale |
string |
BCP 47 locale tag (e.g. “en-US”, “he-IL”) |
Returns
Section titled “Returns”true if value’s local day is a weekend day in locale, false on invalid input
Examples
Section titled “Examples”isZonedWeekend("2024-02-03T10:00:00-05:00[America/New_York]", "en-US") // true (Saturday)isZonedWeekend("2024-02-02T10:00:00+02:00[Asia/Jerusalem]", "he-IL") // true (Friday, he-IL weekend is Fri/Sat)isZonedWeekend("2024-02-04T10:00:00+02:00[Asia/Jerusalem]", "he-IL") // false (Sunday)isZonedWeekend("invalid", "en-US") // falseisZonedWeekend("2024-02-03T10:00:00-05:00[America/New_York]", "not-a-locale") // false