0.17.0 • Published 6 years ago

flow-runtime-validators v0.17.0

Weekly downloads
169
License
MIT
Repository
github
Last release
6 years ago

flow-runtime-validators

Common validators for use with flow-runtime.

See the docs at https://codemix.github.io/flow-runtime/#/flow-runtime-validators

Installation

npm install flow-runtime-validators

or

yarn add flow-runtime-validators

Usage

import t from 'flow-runtime';
import * as validators from 'flow-runtime-validators';

type EmailAddress = string;

EmailAddress.addConstraint(
  validators.length({max: 250}),
  validators.email()
);

EmailAddress.assert("foo@example.com"); // ok
EmailAddress.assert("nope.com"); // throws
0.17.0

6 years ago

0.16.0

6 years ago

0.15.0

6 years ago

0.14.0

7 years ago

0.13.0

7 years ago

0.12.0

7 years ago

0.11.1

7 years ago

0.11.0

7 years ago

0.10.0

7 years ago

0.9.1

7 years ago

0.9.0

7 years ago

0.8.0

7 years ago

0.7.0

7 years ago

0.6.1

7 years ago

0.6.0

7 years ago

0.5.0

7 years ago

0.4.0

7 years ago

0.3.0

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.0

7 years ago

0.0.6

7 years ago

0.0.1

7 years ago