Changes
- Map returns are now auto resolved internally instead of having to do another
Promise.all()call
Example
// before
const value = await pipe(something)
.map(id => fetchById(id))
.to(x => Promise.all(x))
.run()
// from v0.2.3
const value = await pipe(something)
.map(id => fetchById(id))
.run()All Changes
a722876 feat: auto resolve map promises
ea92670 ci: fix
32627d8 fix: release
fe6d0b6 simplify build
90067e2 test pre-commit