next-cloudflare/lib/asyncCompose.js
2019-02-18 01:55:52 -06:00

14 lines
233 B
JavaScript

const asyncCompose = (...funcs) => {
return async (argument) => {
let current = argument;
for (const func of funcs) {
current = await func(current);
}
return current;
};
};
module.exports = asyncCompose;