From 83030bf0304f70a0d35bf3e8a2b8ccb043425b8d Mon Sep 17 00:00:00 2001 From: Rim Date: Sun, 30 Mar 2025 23:57:20 -0400 Subject: [PATCH] chore(app.js): remove redundant function, use deep clone over JSON.parse(JSON.stringify()) --- app.js | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/app.js b/app.js index 09278f5..7a5f653 100644 --- a/app.js +++ b/app.js @@ -85,6 +85,43 @@ const sanitizeJsonOutput = (data) => { } }; +// Replace the processJsonOutput function with this more efficient version +const processJsonOutput = (data, options = { sanitize: true, replaceKeys: true }) => { + // Use a more efficient deep clone approach instead of JSON.parse(JSON.stringify()) + function deepClone(obj) { + if (obj === null || typeof obj !== 'object') { + return obj; + } + + if (Array.isArray(obj)) { + return obj.map(item => deepClone(item)); + } + + const clone = {}; + Object.keys(obj).forEach(key => { + clone[key] = deepClone(obj[key]); + }); + + return clone; + } + + // Create a deep copy of the data to avoid reference issues + let processedData = deepClone(data); + + // Apply sanitization if needed + if (options.sanitize) { + processedData = sanitizeJsonOutput(processedData); + } + + // Apply key replacement if needed + if (options.replaceKeys) { + processedData = replaceJsonKeys(processedData); + } + + return processedData; +}; + +/* // Combined function to sanitize and replace keys const processJsonOutput = (data, options = { sanitize: true, replaceKeys: true }) => { // Create a deep copy of the data to avoid reference issues @@ -101,8 +138,9 @@ const processJsonOutput = (data, options = { sanitize: true, replaceKeys: true } } return processedData; - }; + }; */ + /* // Improved token management with auto-refresh const tokenManager = { tokens: new Map(), @@ -146,6 +184,7 @@ const tokenManager = { this.tokens.delete(ssoToken); } }; +*/ // Store active sessions to avoid repeated logins const activeSessions = new Map();