UNPKG

@burglekitt/gmt

Version:

Temporal-based date and time utilities with timezone support and polyfill integration

24 lines (23 loc) 1.14 kB
/** * Return the start of the week containing `value`, using `locale`'s * first day of week (e.g. en-US: Sunday, fr-FR: Monday). * * - Resolves the locale's first day of week via * `Intl.Locale.prototype.weekInfo`. * - Falls back to Monday if the runtime's `weekInfo` data doesn't resolve * a first day for the locale. * - Distinct from `startOfDate(value, "week", { weekStartsOn })`, which * takes an explicit ISO-biased `weekStartsOn` option instead of deriving * it from a locale. * - Returns "" if `value` or `locale` is invalid. * * @param value ISO 8601 date string * @param locale BCP 47 locale tag (e.g. "en-US", "fr-FR") * @returns ISO 8601 date string for the start of `value`'s locale-relative week, or "" on invalid input * * @example getLocaleStartOfWeek("2024-02-29", "en-US") // "2024-02-25" (Sunday) * @example getLocaleStartOfWeek("2024-02-29", "fr-FR") // "2024-02-26" (Monday) * @example getLocaleStartOfWeek("invalid-date", "en-US") // "" * @example getLocaleStartOfWeek("2024-02-29", "not-a-locale") // "" */ export declare function getLocaleStartOfWeek(value: string, locale: string): string;