mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-26 19:08:23 +03:00
14 lines
478 B
TypeScript
14 lines
478 B
TypeScript
const PREFIX = 'shlink';
|
|
const buildPath = (path: string) => `${PREFIX}.${path}`;
|
|
|
|
export class LocalStorage {
|
|
public constructor(private readonly localStorage: Storage) {}
|
|
|
|
public readonly get = <T>(key: string): T | undefined => {
|
|
const item = this.localStorage.getItem(buildPath(key));
|
|
|
|
return item ? JSON.parse(item) as T : undefined;
|
|
};
|
|
|
|
public readonly set = (key: string, value: any) => this.localStorage.setItem(buildPath(key), JSON.stringify(value));
|
|
}
|