File size: 289 Bytes
246d201 |
1 2 3 4 5 6 7 8 9 10 11 12 |
const getCachedConfig = (): { [key: string]: string } => {
const config = localStorage.getItem("ALL_SETTINGS");
if (config === null || config === undefined) return {};
try {
return JSON.parse(config);
} catch (e) {
return {};
}
};
export { getCachedConfig };
|