Skip to main content
Module

x/valibot/mod.ts>safeParse

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

Parses unknown input based on a schema.

Parameters

schema: TSchema

The schema to be used.

input: unknown

The input to be parsed.

optional
info: Pick<ParseInfo, "abortEarly" | "abortPipeEarly" | "skipPipe">

The optional parse info.

Returns

The parsed output.