mirror of
https://github.com/koush/scrypted.git
synced 2026-06-13 22:10:25 +01:00
9 lines
122 B
TypeScript
9 lines
122 B
TypeScript
|
|
export function safeParseJson(value: string) {
|
|
try {
|
|
return JSON.parse(value);
|
|
}
|
|
catch (e) {
|
|
}
|
|
}
|