Hi! First of all, I've only been using this library for a few days and I already find it awesome, so: thank you for creating it, your work is definitely appreciated!
My issue can probably be considered a request: I'm not certain that this is possible (I believe it should be), since I haven't looked into the source. What I would like to do is the following:
var test = operative(function() {
throw 'Error'; // Throw an error instead of using deferred.reject
});
test().then(
function() {},
function(e) {
console.error(e);
});
Is this possible? Is this not a good idea?
Thank you for your time and for your work!
Hi! First of all, I've only been using this library for a few days and I already find it awesome, so: thank you for creating it, your work is definitely appreciated!
My issue can probably be considered a request: I'm not certain that this is possible (I believe it should be), since I haven't looked into the source. What I would like to do is the following:
Is this possible? Is this not a good idea?
Thank you for your time and for your work!