UNPKG

tamda

Version:

Practical functional programming library for TypeScript

8 lines 280 B
// tslint:disable-next-line: ban-types export function and(...functions) { // tslint:disable-next-line: only-arrow-functions return function () { return functions.every(fn => Boolean(fn.apply(undefined, arguments))); }; } //# sourceMappingURL=and.js.map