Skip to content

Instantly share code, notes, and snippets.

@joaogolias
Last active October 31, 2018 01:11
Show Gist options
  • Save joaogolias/ae3566ebf31b8738771c8f898f4256b0 to your computer and use it in GitHub Desktop.
Save joaogolias/ae3566ebf31b8738771c8f898f4256b0 to your computer and use it in GitHub Desktop.
const validateUser = (name?: string, email: string, password: string) => {
if (!name) { // if(name === undefined) {
throw new Error('invalid_name')
}
if (email.indexOf('@') -== -1) {
throw 'invalid_email'
}
if (password.length < 6) {
throw 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment