xypriss-security
Version:
XyPriss Security is an advanced JavaScript security library designed for enterprise applications. It provides military-grade encryption, secure data structures, quantum-resistant cryptography, and comprehensive security utilities for modern web applicatio
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