Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
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.22.0/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.