megid-validation
v1.0.0
Published
Validation library that contains validators and other tools to combine them.
Downloads
2
Readme
@megid/validation
Validation library that contains validators and other tools to combine them.
Install
// with npm
npm i @megid/validation
// with yarn
yarn add @megid/validation
Usage
import { required, email, stopOnFirstFailure, ... } from '@megid/validation';
const validation = {
...
email: stopOnFirstFailure([required, email]),
...
}