mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
14 lines
366 B
JavaScript
14 lines
366 B
JavaScript
function promiseChain(chain, defaultValue = null) {
|
|
let output = new Promise((resolve) => {
|
|
resolve(defaultValue);
|
|
});
|
|
for (let i = 0; i < chain.length; i++) {
|
|
const f = chain[i];
|
|
// eslint-disable-next-line promise/prefer-await-to-then -- Old code before rule was applied
|
|
output = output.then(f);
|
|
}
|
|
return output;
|
|
}
|
|
|
|
module.exports = { promiseChain };
|