Skip to content

Instantly share code, notes, and snippets.

@StevenLangbroek
Created September 30, 2016 15:24
Show Gist options
  • Save StevenLangbroek/647a5c6e6a0daffab3fea04346bf38d9 to your computer and use it in GitHub Desktop.
Save StevenLangbroek/647a5c6e6a0daffab3fea04346bf38d9 to your computer and use it in GitHub Desktop.
Flipped promise order.
const _then = Promise.then;
Promise.then = (error, success) => _then(success, error);
@timoxley
Copy link

Promise.prototype.then

@timoxley
Copy link

This is a great way to ruin someone's day haha

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment