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

x/valibot/src/schemas/index.ts>nullable

The modular and type safe schema library for validating structural data 🤖
Go to Latest
function nullable
import { nullable } from "https://deno.land/x/valibot@v0.19.0/src/schemas/index.ts";

Creates a nullable schema.

Type Parameters

TWrapped extends BaseSchema
optional
TDefault extends Input<TWrapped> | undefined = undefined

Parameters

wrapped: TWrapped

The wrapped schema.

optional
default_: TDefault | (() => TDefault)

The default value.