@hotmeshio/hotmesh
Version:
Permanent-Memory Workflows & AI Agents
13 lines (12 loc) • 341 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogicalHandler = void 0;
class LogicalHandler {
and(firstValue, secondValue) {
return firstValue && secondValue;
}
or(firstValue, secondValue) {
return firstValue || secondValue;
}
}
exports.LogicalHandler = LogicalHandler;