Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/valibot/mod.ts>isoWeek

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Latest
function isoWeek
import { isoWeek } from "https://deno.land/x/valibot@v0.35.0/mod.ts";

Creates an ISO week validation action.

Format: yyyy-Www

Hint: The regex used cannot validate the maximum number of weeks based on the year. For example, "2021W53" is valid although 2021 has only 52 weeks.

Type Parameters

TInput extends string

Returns

IsoWeekAction<TInput, undefined>

An ISO week action.

Creates an ISO week validation action.

Format: yyyy-Www

Hint: The regex used cannot validate the maximum number of weeks based on the year. For example, "2021W53" is valid although 2021 has only 52 weeks.

Type Parameters

TInput extends string
TMessage extends ErrorMessage<IsoWeekIssue<TInput>> | undefined

Parameters

message: TMessage

The error message.

Returns

An ISO week action.