Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/valibot/src/schemas/nullable/nullableAsync.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.22.0/src/schemas/nullable/nullableAsync.ts";

Creates an async nullable schema.

Parameters

wrapped: TWrapped

The wrapped schema.

Returns

An async nullable schema.

Creates an async nullable schema.

Type Parameters

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

Parameters

wrapped: TWrapped

The wrapped schema.

default_: TDefault

The default value.

Returns

An async nullable schema.