mirror of
https://github.com/koush/scrypted.git
synced 2026-04-24 00:40:27 +01:00
8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
export function safeParseJson(value: string) {
|
|
try {
|
|
return JSON.parse(value);
|
|
}
|
|
catch (e) {
|
|
}
|
|
}
|