1export default function (raw: any): string { 2 try { 3 return JSON.stringify(raw); 4 } catch { 5 return ''; 6 } 7} 8