Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 517 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 517 Bytes

Pull promise map

map implementation for pull-streams supporting regular values and promises as return values.

Similar to pull-promise's through with the key difference that non-promise return values are allowed aligning with how most promise libraries work.

Example

import pull from 'pull-stream'
import map from 'pull-promise-map'

pull(
	pull.values([1, 2, 3]),
	map((x) => Promise.resolve(x * 2)),
	map((x) => x + 1),
	pull.log(),
)
// -> 3, 5, 7