Skip to main content
Module

x/valibot/mod.ts>optionalAsync

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

Creates an async optional schema.

Parameters

wrapped: TWrapped

The wrapped schema.

Returns

An async optional schema.

Creates an async optional 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 optional schema.