UNPKG

@codeparticle/formal

Version:

A <2kb library for validating data of any kind

10 lines (7 loc) 264 B
import { ValidationRule } from '../types/index.js'; /** * Validator to ensure that this value is equivalent to another that may or may not be available * at time of definition. */ declare const isEqualTo: (value: any) => ValidationRule; export { isEqualTo };