@arvind-yadav/validator
v1.0.1
Published
A lightweight email, phone, password and schema validator.
Downloads
323
Maintainers
Readme
@arvind-yadav/validator
A lightweight email, phone, password and schema validation library.
Installation
npm install @arvind-yadav/validatorUsage
import { isEmail, validateSchema } from '@arvind-yadav/validator';
isEmail('[email protected]'); // true
const errors = validateSchema(
{ email: 'bad' },
{ email: { required: true, type: 'email' } }
);