Files
ihrm/node_modules/p-pipe/index.js
2023-05-10 15:06:57 +05:30

18 lines
360 B
JavaScript

'use strict';
module.exports = (...functions) => {
if (functions.length === 0) {
throw new Error('Expected at least one argument');
}
return async input => {
let currentValue = input;
for (const fn of functions) {
currentValue = await fn(currentValue); // eslint-disable-line no-await-in-loop
}
return currentValue;
};
};