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.26.0/mod.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.