A funny Promise wrapper for those who can't keep promises. There's a 50:50 chance that the promise will be fulfilled. If not, it rejects with a random developer excuse. 😎😇 Good luck 🙈
$ npm install promise-promise --save
import Promise from 'promise-promise';
const myAsyncOperation = new Promise(resolve => {
resolve('I should resolve 😱');
});
myAsyncOperation
.then(response => {
console.log(response); // Sometimes it resolves
})
.catch(error => {
console.log(err); // Sometimes not 😎
});
MIT © René Viering