Skip to content

Instantly share code, notes, and snippets.

@mosufy
Created June 5, 2021 04:22
Show Gist options
  • Save mosufy/7cbfaa2e0c66215bdc553cd751820913 to your computer and use it in GitHub Desktop.
Save mosufy/7cbfaa2e0c66215bdc553cd751820913 to your computer and use it in GitHub Desktop.
try {
validateUsernameFormat(user.username);
await checkUsernameExists(user.username);
} catch (error) {
return {
// a better approach is to have a response success/error function
error: {
message: error.message,
code: 'FAILED_USERNAME_VALIDATION',
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment