mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
420aa4a657
React File Tree GitOrigin-RevId: fb3141ba8cd9ca0d68e87edb74764a360144c8fe
9 lines
380 B
JavaScript
9 lines
380 B
JavaScript
// run `fn` in serie for all values, and resolve with an array of the resultss
|
|
// inspired by https://stackoverflow.com/a/50506360/1314820
|
|
export function mapSeries(values, fn) {
|
|
return values.reduce((promiseChain, value) => {
|
|
return promiseChain.then(chainResults =>
|
|
fn(value).then(currentResult => [...chainResults, currentResult])
|
|
)
|
|
}, Promise.resolve([]))
|
|
}
|