-
-
Save justsml/cfe7bcd4a2be32d4c9835b10c05eec3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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