Benjamin Gruenbaum
Benjamin Gruenbaum
I'm -1 on it, I think this is not what callback users expect.
I tested this and it doesn't actually work anywhere but chromium (no node, no firefox etc) so if we do this we'd have to have two implementations anyway.
@itayperry wanna take a stab at it? I won't have time to take a look in the next ±2 months probably due to travel/life.
@zbyte64 feel free to open a PR
> there is no error in the finally That's the issue, `p.finally(handler)` creates a _new_ promise which is unhandled: ```js const p = Promise.reject(new Error()); p.catch(...); // p will no...
What about building uBlockOrigin as either a proxy with a root certificate or using applescript and making it a Mac app?
> as you can't encode a string as ISO-8859-1 on the JavaScript side You can, if you hold it in an ArrayBuffer and do the conversion with TextEncoder/TextDecoder. Holding it...
You can use Node streams for that: ```js const { Readable } = require('stream'); const Promise = require('bluebird'); // to compare async function fn(arg) { await Promise.resolve(); // simulate something...
Development on bluebird has virtually stopped. We will still fix security issues but Petka is pretty much gone from here and social (for now) and releases are tricky (I would...
I don't actually remember how to publish :D @petkaantonov