UNPKG

funcom

Version:

Functional composition helpers

8 lines (7 loc) 189 B
Object.defineProperty(exports, "__esModule", { value: true }); exports.compose = compose; function compose(...fns) { return initial => fns.reduceRight((arg, fn) => fn(arg), initial); }