function onGetUserAndUserAccount(user, userAccount) { | |
return doSomething(user, userAccount); | |
} | |
function onGetUser(user) { | |
return getUserAccountById(user.id).then(function (userAccount) { | |
return onGetUserAndUserAccount(user, userAccount); | |
}); | |
} | |
getUserByName('andrew') | |
.then(onGetUser) | |
.then(onGetCompany) | |
.then(onGetJob) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment