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
12 lines (10 loc) • 430 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 = [];
export { BUFFER_POOL, CONTEXT_POOL, EXECUTION_CACHE, FUNCTION_CACHE, HASH_CACHE, ID_POOL };
//# sourceMappingURL=exec.const.js.map