1.0.4 • Published 4 years ago

aj-email-validator v1.0.4

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

Regex Based Email Validator for React Native

Installation

For react native project..

$ npm install aj-email-validator

Usage

For react native project follow the following steps

1) Import Library

import EmailValidator from 'aj-email-validator'

2) Call the function by passing

if ( EmailValidator(emailString) == true ) {
    alert('Email is Valid')
}
else{
    alert('Email is not Valid')
}