Thomas G. Lopes
format
17c3edf
raw
history blame contribute delete
105 Bytes
export function safeParse(str: string) {
try {
return JSON.parse(str);
} catch {
return null;
}
}