Files
test1/package/utils/parse.ts
2026-03-20 07:33:46 +00:00

11 lines
163 B
TypeScript

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