{"version":3,"file":"local-storage-helper-c9ee2787.js","sources":["../../../FE_DEV/src/utils/local-storage-helper.ts"],"sourcesContent":["export class LocalStorageHelper {\n static getItem(key: string) : T | null{\n const item = localStorage.getItem(key);\n return item ? JSON.parse(item) as T : null;\n }\n static setItem(key: string, value: T) {\n localStorage.setItem(key, JSON.stringify(value));\n }\n static removeItem(key: string) {\n localStorage.removeItem(key);\n }\n}"],"names":["LocalStorageHelper","key","item","value"],"mappings":"AAAO,MAAMA,CAAmB,CAC5B,OAAO,QAAWC,EAAuB,CAC/B,MAAAC,EAAO,aAAa,QAAQD,CAAG,EACrC,OAAOC,EAAO,KAAK,MAAMA,CAAI,EAAS,IAC1C,CACA,OAAO,QAAWD,EAAaE,EAAU,CACrC,aAAa,QAAQF,EAAK,KAAK,UAAUE,CAAK,CAAC,CACnD,CACA,OAAO,WAAWF,EAAa,CAC3B,aAAa,WAAWA,CAAG,CAC/B,CACJ"}