Skip to content

Instantly share code, notes, and snippets.

@pratyushcrd
Created April 8, 2019 21:51
Show Gist options
  • Save pratyushcrd/a1bd780167eb0f39e30bbe7389caa315 to your computer and use it in GitHub Desktop.
Save pratyushcrd/a1bd780167eb0f39e30bbe7389caa315 to your computer and use it in GitHub Desktop.
function buyBread (input) {
return gotoStore(input)
.then(() => {
return buyBrownBread(input)
.catch(() => buyWhiteBread(input))
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment