Package Exports
- p-map-series
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (p-map-series) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
p-map-series 
Map over promises serially
Useful as a side-effect mapper. Use p-map
if you don't need side-effects, as it's concurrent.
Install
$ npm install p-map-series
Usage
const pMapSeries = require('p-map-series');
const keywords = [
getTopKeyword() //=> Promise
'rainbow',
'pony'
];
let scores = [];
const mapper = async keyword => {
const score = await fetchScore(keyword);
scores.push(score);
return {keyword, score};
});
(async () => {
console.log(await pMapSeries(keywords, mapper));
/*
[
{
keyword: 'unicorn',
score: 99
},
{
keyword: 'rainbow',
score: 70
},
{
keyword: 'pony',
score: 79
}
]
*/
})();
API
pMapSeries(input, mapper)
Returns a Promise
that is fulfilled when all promises in input
and ones returned from mapper
are fulfilled, or rejects if any of the promises reject. The fulfilled value is an Array
of the mapper
created promises fulfillment values.
input
Type: Iterable<Promise | unknown>
Mapped over serially in the mapper
function.
mapper(element, index)
Type: Function
Expected to return a value. If it's a Promise
, it's awaited before continuing with the next iteration.
Related
- p-each-series - Iterate over promises serially
- p-reduce - Reduce a list of values using promises into a promise for a value
- p-map - Map over promises concurrently
- More…
License
MIT © Sindre Sorhus