UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

10 lines 202 B
export var safeParseJSON = function safeParseJSON(text) { if (typeof text !== 'string') return; var json; try { json = JSON.parse(text); } catch (_unused) { return; } return json; };