1.0.0 • Published 1 year ago

megid-validation v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

@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]),
  ...
}
1.0.0

1 year ago