Skip to content

Instantly share code, notes, and snippets.

@justsml
Forked from Gaafar/if-promise.js
Created July 8, 2017 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justsml/cfe7bcd4a2be32d4c9835b10c05eec3d to your computer and use it in GitHub Desktop.
Save justsml/cfe7bcd4a2be32d4c9835b10c05eec3d to your computer and use it in GitHub Desktop.
const makeRequest = () => {
return getJSON()
.then(data => data.needsAnotherRequest
? makeAnotherRequest(data)
: data)
.then(data => console.log(data) || data)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment