Skip to content

Instantly share code, notes, and snippets.

@djabif
Last active March 18, 2018 21:03
Show Gist options
  • Save djabif/f75ddb4d88fcb0816dc147f04c645740 to your computer and use it in GitHub Desktop.
Save djabif/f75ddb4d88fcb0816dc147f04c645740 to your computer and use it in GitHub Desktop.
doRegister(value){
return new Promise<any>((resolve, reject) => {
firebase.auth().createUserWithEmailAndPassword(value.email, value.password)
.then(res => {
resolve(res);
}, err => reject(err))
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment