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

x/valibot/src/methods/index.ts>transformAsync

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

Adds an async transformation step to a schema, which is executed at the end of parsing and can change the output type.

Parameters

schema: TSchema

The schema to be used.

action: (value: Output<TSchema>, info: TransformInfo) => TOutput | Promise<TOutput>

The transformation action.

optional
pipe: PipeAsync<TOutput>

A validation pipe.

Adds an async transformation step to a schema, which is executed at the end of parsing and can change the output type.

Parameters

schema: TSchema

The schema to be used.

action: (value: Output<TSchema>, info: TransformInfo) => TOutput | Promise<TOutput>

The transformation action.

A validation schema.