UNPKG

@tigthor/kokocrypt

Version:

Enhanced Fortress Edition - Secure, quantum-resistant, high-performance encryption package

14 lines 418 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SessionContext = void 0; const node_async_hooks_1 = require("node:async_hooks"); const storage = new node_async_hooks_1.AsyncLocalStorage(); exports.SessionContext = { set(keys, cb) { return storage.run(keys, cb); }, get() { return storage.getStore(); }, }; //# sourceMappingURL=session.context.js.map