mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-09 00:34:46 +08:00
11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
import { parse } from "best-effort-json-parser";
|
|
|
|
export function tryParseJSON(json: string) {
|
|
try {
|
|
const object = parse(json);
|
|
return object;
|
|
} catch {
|
|
return undefined;
|
|
}
|
|
}
|