mirror of
https://github.com/koush/scrypted.git
synced 2026-02-10 09:12:03 +00:00
8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
export function safeParseJson(value: string) {
|
|
try {
|
|
return JSON.parse(value);
|
|
}
|
|
catch (e) {
|
|
}
|
|
}
|