everyutil
Version:
A comprehensive library of lightweight, reusable utility functions for JavaScript and TypeScript, designed to streamline common programming tasks such as string manipulation, array processing, date handling, and more.
10 lines (9 loc) • 359 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.andAll = void 0;
/**
* Alias for conjoin: Combines multiple predicates using logical AND.
* @author @dailker
*/
var conjoin_1 = require("./conjoin");
Object.defineProperty(exports, "andAll", { enumerable: true, get: function () { return conjoin_1.conjoin; } });