UNPKG

@hotmeshio/hotmesh

Version:

Permanent-Memory Workflows & AI Agents

13 lines (12 loc) 341 B
"use strict"; 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;