twenty / packages /twenty-shared /src /utils /parseJson.ts
Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
489 Bytes
import { isDefined } from '@/utils/validation';
export const parseJson = <T>(
rawJson: string | boolean | null | number | undefined,
): T | null => {
try {
if (!isDefined(rawJson)) {
return null;
}
if (rawJson === '') {
return null;
}
// This is a hack to handle the case where the value is a scalar value which is part of JSON spec but not implemented before ES2019
return JSON.parse('[' + rawJson + ']')[0];
} catch {
return null;
}
};