Skip to content

Instantly share code, notes, and snippets.

function getGroup(userName) {
return getUser(userName)
.then( user => {
return getGroup(user.id)
})
.then( group => {
return group.name
})
.catch(err => {
console.log(err)