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.
13 lines (11 loc) • 485 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 = [];
const PARAM_HASH_REGEX = /[^\w\s]/g;
export { BUFFER_POOL, CONTEXT_POOL, EXECUTION_CACHE, FUNCTION_CACHE, HASH_CACHE, ID_POOL, PARAM_HASH_REGEX };
//# sourceMappingURL=exec.const.js.map