jaywalk
v0.10.8
Published
Runtime type validation
Downloads
109
Maintainers
Readme
Jaywalk
Runtime type validations.
Installation
npm install jaywalk --save
Usage
import { Types, compile } from 'jaywalk'
const schema = new Types.Object({
properties: {
username: new Types.String({ minLength: 1, maxLength: 30, pattern: '^[A-Za-z0-9_]+$' })
}
})
const validate = compile(schema)
validate({ username: 'hello' }).then(...)
License
Apache 2.0