Skip to main content
Module

x/valibot/mod.ts>withDefault

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Go to Latest
function withDefault
Deprecated
Deprecated

Use optional instead.

import { withDefault } from "https://deno.land/x/valibot@v0.21.0/mod.ts";

Passes a default value to a schema in case of an undefined input.

Type Parameters

TSchema extends BaseSchema | BaseSchemaAsync

Parameters

schema: TSchema

The affected schema.

value: Input<TSchema> | (() => Input<TSchema>)

The default value.

Returns

The passed schema.