UNPKG

@hotmeshio/hotmesh

Version:

Permanent-Memory Workflows & AI Agents

13 lines (12 loc) 340 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.JsonHandler = void 0; class JsonHandler { stringify(value, replacer, space) { return JSON.stringify(value, replacer, space); } parse(text, reviver) { return JSON.parse(text, reviver); } } exports.JsonHandler = JsonHandler;