Files
Nitro-V3/src/api/utils/GetLocalStorage.ts
T
DuckieTM 7feb10ab15 🆙 Init V3
2026-01-31 09:10:52 +01:00

12 lines
190 B
TypeScript

export const GetLocalStorage = <T>(key: string) =>
{
try
{
JSON.parse(window.localStorage.getItem(key)) as T ?? null;
}
catch (e)
{
return null;
}
};