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

Parses an 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
config: SchemaConfig

The parse configuration.

Returns

SafeParseResult<TSchema>

The parsed output.