README
Checkok
a lib
Installation
yarn add checkok
Usage
import { check } from 'checkok'
import { string, required, email } from 'checkok/rules'
const result = check('foo').pipe(
string(),
required(),
email(),
)
console.log(result) // { ok: true }