Skip to main content
Module

x/valibot/mod.ts>nullableAsync

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

Creates an async nullable schema.

Type Parameters

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

Parameters

wrapped: TWrapped

The wrapped schema.

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

The default value.

Returns

An async nullable schema.