export const safeJSONParse = (str, defaultValue = {}) => { try { return JSON.parse(str); } catch (e) { return defaultValue; } };