Skip to content

Instantly share code, notes, and snippets.

@mosufy
Created June 5, 2021 01:46
Show Gist options
  • Save mosufy/7c46661ebacf750c1865debd7f09ae72 to your computer and use it in GitHub Desktop.
Save mosufy/7c46661ebacf750c1865debd7f09ae72 to your computer and use it in GitHub Desktop.
import emailCheck from 'email-check-lib';
export const validateEmail = email => {
const emailCheck = new EmailCheck();
const emailValidated = emailCheck.validate(params.newEmail);
if (!emailValidated) {
throw new Error('Invalid email');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment