Files
fvtt-cthulhu-eternal/node_modules/comment-parser/es6/transforms/index.js

4 lines
112 B
JavaScript

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