????

Your IP : 216.73.217.111


Current Path : /proc/self/root/home/arabianr/public_html/wp-content/plugins/extendify/src/Shared/lib/
Upload File :
Current File : //proc/self/root/home/arabianr/public_html/wp-content/plugins/extendify/src/Shared/lib/parsing.js

export const safeParseJson = (json, fallback = {}) => {
	if (typeof json !== 'string') {
		return json ?? fallback;
	}
	try {
		return JSON.parse(json) ?? fallback;
	} catch (_e) {
		return fallback;
	}
};