Skip to content

Instantly share code, notes, and snippets.

@NetanelBasal
Created October 24, 2016 22:01
Show Gist options
  • Save NetanelBasal/371fd4a10fea2e3316cb6ab15729a923 to your computer and use it in GitHub Desktop.
Save NetanelBasal/371fd4a10fea2e3316cb6ab15729a923 to your computer and use it in GitHub Desktop.
validateUniqueEmailPromise( email : string ) {
return new Promise(resolve => {
setTimeout(() => {
if( email === "alreadyExistsEmail@gmail.com" ) {
resolve({
asyncInvalid: true
})
} else {
resolve(null);
}
}, 2000);
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment