sync-promise icon indicating copy to clipboard operation
sync-promise copied to clipboard

Compact synchronized promise implementation. Promises/A+ incompliant. Works inside IdexedDB transactions.

Results 4 sync-promise issues
Sort by recently updated
recently updated
newest added

Hi, In your library, it is nice to see there is already a solution for the problem with promises for IndexedDB! I would just suggest though that there are a...

When using `catch` ``` promise.then(foo).catch(err => console.log(err)) ``` everything works as intended but ``` promise.then(foo, err => console.log(err)) ``` seems to not catch the error. [The two formulations should be...