UNPKG

funcom

Version:

Functional composition helpers

8 lines (7 loc) 153 B
Object.defineProperty(exports, "__esModule", { value: true }); exports.all = all; function all(...fns) { return value => fns.map(fn => fn(value)); }