D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
proc
/
self
/
cwd
/
fixxx
/
wp-content
/
plugins
/
extendify
/
src
/
Shared
/
lib
/
Filename :
parsing.js
back
Copy
export const safeParseJson = (json) => { try { return JSON.parse(json) ?? {}; } catch (e) { return {}; } };