We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d007b5 commit 83c196bCopy full SHA for 83c196b
1 file changed
src/resources/json-circular.js
@@ -78,7 +78,7 @@ const _parseRecursive = (obj, processed, path) => {
78
*/
79
export const parse = string => {
80
const json = JSON.parse(string);
81
- if (!json.v) return json;
+ if (!json?.v) return json;
82
return _parseRecursive(json, {}, '');
83
};
84
0 commit comments