export function tryParseToObject(json: string) { if (typeof json === 'object') return json try { return JSON.parse(json) } catch { return {} } }