Files
scrypted/plugins/objectdetector/src/util.ts
2022-08-02 19:01:46 -07:00

8 lines
121 B
TypeScript

export function safeParseJson(value: string) {
try {
return JSON.parse(value);
}
catch (e) {
}
}