UNPKG

funcom

Version:

Functional composition helpers

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