Skip to content

Instantly share code, notes, and snippets.

@kepta

kepta/block2.js Secret

Last active February 21, 2018 14:44
Show Gist options
  • Save kepta/15e2f805b587dc66ab5460c4373e3536 to your computer and use it in GitHub Desktop.
Save kepta/15e2f805b587dc66ab5460c4373e3536 to your computer and use it in GitHub Desktop.
var statusProm = fetchServerStatus();
var promA = statusProm.then(r => (r.statusCode === 200 ? "good" : "bad"));
var promB = promA.then(r => (r === "good" ? "ALL OK" : "NOTOK"));
var promC = statusProm.then(r => fetchThisAnotherThing());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment