Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/valibot/src/index.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.28.1/src/index.ts";

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

Parameters

schema: TSchema

The affected schema.

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

The default value.

Returns

The passed schema.