fortify2-js
Version:
MOST POWERFUL JavaScript Security Library! Military-grade cryptography + 19 enhanced object methods + quantum-resistant algorithms + perfect TypeScript support. More powerful than Lodash with built-in security.
19 lines (16 loc) • 569 B
JavaScript
;
// **ULTRA-FAST OPTIMIZATION: Pre-compiled function cache**
const FUNCTION_CACHE = new Map();
const HASH_CACHE = new Map();
const EXECUTION_CACHE = new Map();
// **ULTRA-FAST OPTIMIZATION: Reusable objects to avoid GC pressure**
const CONTEXT_POOL = [];
const ID_POOL = [];
const BUFFER_POOL = [];
exports.BUFFER_POOL = BUFFER_POOL;
exports.CONTEXT_POOL = CONTEXT_POOL;
exports.EXECUTION_CACHE = EXECUTION_CACHE;
exports.FUNCTION_CACHE = FUNCTION_CACHE;
exports.HASH_CACHE = HASH_CACHE;
exports.ID_POOL = ID_POOL;
//# sourceMappingURL=exec.const.js.map