Skip to content

Instantly share code, notes, and snippets.

@thejohnfreeman
Last active January 7, 2019 21:48
Show Gist options
  • Save thejohnfreeman/20c953cfb54177d75d5a836b6de1e4a4 to your computer and use it in GitHub Desktop.
Save thejohnfreeman/20c953cfb54177d75d5a836b6de1e4a4 to your computer and use it in GitHub Desktop.
const getFullName = async(function* (username, password) {
let token
try {
token = yield logIn(username, password);
} catch (error) {
console.error('wrong username or password')
return
}
const user = yield getUser(token)
return user.fullName
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment