UNPKG

@scriptwerx/web-storage

Version:

localStorage and sessionStorage for use in your Angular 2 applications.

14 lines (9 loc) 241 B
export class Constants { private static PREFIX = 'swx-'; public static get STORAGE_PREFIX(): string { return this.PREFIX; } public static set STORAGE_PREFIX(prefix: string) { this.PREFIX = prefix; } }