Files
fvtt-hamalron/node_modules/comment-parser/es6/transforms/index.js
T
2025-12-25 23:08:06 +01:00

4 lines
112 B
JavaScript

export function flow(...transforms) {
return (block) => transforms.reduce((block, t) => t(block), block);
}