strapi/packages/core/utils/lib/pipe-async.js

14 lines
186 B
JavaScript
Raw Normal View History

'use strict';
2022-08-08 23:33:39 +02:00
module.exports =
(...methods) =>
async (data) => {
let res = data;
2022-08-08 23:33:39 +02:00
for (const method of methods) {
res = await method(res);
}
2022-08-08 23:33:39 +02:00
return res;
};