mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-06 23:06:20 +01:00
6843bcd5ef
issue: The Array.isArray(value) check at line 113 will never be reached because arrays are also objects in JavaScript. The earlier check at line 105 (typeof value === 'object') will catch arrays first and pass them to stringifyObj(), making the array-specific handling code unreachable.