Skip to content

Instantly share code, notes, and snippets.

@kepta

kepta/block5.js Secret

Last active February 21, 2018 14:51
Show Gist options
  • Save kepta/9bb9e500222bc50a8f429d0b2791223b to your computer and use it in GitHub Desktop.
Save kepta/9bb9e500222bc50a8f429d0b2791223b to your computer and use it in GitHub Desktop.
return new Promise((res, rej) => {
var fetchPromise = fetchSomeData({});
fetchPromise
.then(data => {
res(data); // wrong!!!
})
.catch(err => rej(err)) // wrong !!
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment