1.1.0 • Published 5 years ago

autoratify v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

autoratify

A zero dependency javascript validation library.

Usage

const validate = require('autoratify');

console.log(validate.validateEmail('hello@example.com')); // true

Avaliable helper methods

  1. validatePhoneNumber(phoneNumber, length) - This validates if a phone number matches a length without the international code

  2. validateEmail(email) - This validates a for a valid email and returns false if the email passed is invalid.

  3. validatePassword(password, length) - This validates if a password matches the required length.

  4. validateLength(text, length) - This validates a text specified with the length needed.

Contributions

To contribute, create a pull request or file an issue and it will be reviewed as soon as possible.

Copyright

© 2019, Miracle Anyanwu