bluebird-api icon indicating copy to clipboard operation
bluebird-api copied to clipboard

Bluebird compatible API on top of native promises.

Results 7 bluebird-api issues
Sort by recently updated
recently updated
newest added

It would be useful to have the static method implementation that work with pure native promises without extending the base class. Afaik promises returned by async-await will always be plain...

Solve https://github.com/benjamingr/bluebird-api/issues/72 #goodnessSquad

Explain why bluebird-api, why bluebird, and why the methods might be useful

tree shaking should make users of some features have much smaller builds.

Here an array is being created with a set length: https://github.com/benjamingr/bluebird-api/blob/1f02a97e30037943a2952449615fe6bf7ef28b39/promiseFns/mapSeries.js#L6 The concat function adds an item to array and increments length. Either ret[index] = value should be used or...