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.13.1/mod.ts";

Parses unknown input based on a schema.

Type Parameters

TSchema extends BaseSchema

Parameters

schema: TSchema

The schema to be used.

input: unknown

The input to be parsed.

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

The optional parse info.

Returns

SafeParseResult<TSchema>

The parsed output.