Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/valibot/mod.ts>partialCheck

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

Creates a partial check validation action.

Type Parameters

TInput extends PartialInput
TPathList extends readonly PathKeys<TInput>[]
TSelection extends DeepPickN<TInput, TPathList>

Parameters

pathList: TPathList

The selected paths.

requirement: (input: TSelection) => boolean

The validation function.

Returns

A partial check action.

Creates a partial check validation action.

Type Parameters

TInput extends PartialInput
TPathList extends readonly PathKeys<TInput>[]
TSelection extends DeepPickN<TInput, TPathList>
TMessage extends ErrorMessage<PartialCheckIssue<TSelection>> | undefined

Parameters

pathList: TPathList

The selected paths.

requirement: (input: TSelection) => boolean

The validation function.

message: TMessage

The error message.