Skip to main content
Module

x/valibot/mod.ts>is

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

Checks if the input matches the scheme. By using a type predicate, this function can be used as a type guard.

Parameters

schema: TSchema

The schema to be used.

input: unknown

The input to be tested.

Returns

input is Input<TSchema>

Whether the input matches the scheme.