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

x/valibot/mod.ts>isoDate

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

Creates an ISO date validation action.

Format: yyyy-mm-dd

Hint: The regex used cannot validate the maximum number of days based on year and month. For example, "2023-06-31" is valid although June has only 30 days.

Type Parameters

TInput extends string

Returns

IsoDateAction<TInput, undefined>

An ISO date action.

Creates an ISO date validation action.

Format: yyyy-mm-dd

Hint: The regex used cannot validate the maximum number of days based on year and month. For example, "2023-06-31" is valid although June has only 30 days.

Type Parameters

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

Parameters

message: TMessage

The error message.

Returns

An ISO date action.