Skip to content

Instantly share code, notes, and snippets.

@Azerothian
Created March 2, 2016 03:29
Show Gist options
  • Save Azerothian/91706f9bbc46dca0682b to your computer and use it in GitHub Desktop.
Save Azerothian/91706f9bbc46dca0682b to your computer and use it in GitHub Desktop.
function temp(test) {
if (test) {
return Promise.resolve("howdy");
} else {
return fetch("/api").then((response) => {
return "lol";
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment