File "parsing.js"

Full Path: /home/leadltht/fastlinkinternet.com/admin/wp-content/wp-content/wp-content/plugins/extendify/src/Shared/lib/parsing.js
File size: 115 bytes
MIME-type: text/plain
Charset: utf-8

export const safeParseJson = (json) => {
	try {
		return JSON.parse(json) ?? {};
	} catch (e) {
		return {};
	}
};