Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « transforms « es6 « comment-parser « node_modules « eslint « node_modules « tools - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af165719fb822be7ed85911d6b1ac49f4368df96 (plain)
1
2
3
export function flow(...transforms) {
    return (block) => transforms.reduce((block, t) => t(block), block);
}