UNPKG

idyll-compiler

Version:
11 lines (10 loc) 259 B
export default function pipeline(...operations) { operations = operations.flat(); return async function(input, ...args) { let result = input; for (const op of operations) { result = await op(result, ...args); } return result; }; }