Skip to content

Instantly share code, notes, and snippets.

@itayod
Created May 25, 2019 13:45
Show Gist options
  • Save itayod/e622619568e9113a11e4b389c19f6250 to your computer and use it in GitHub Desktop.
Save itayod/e622619568e9113a11e4b389c19f6250 to your computer and use it in GitHub Desktop.
import {Injectable} from '@angular/core';
@Injectable( { providedIn: 'root' } )
export class LocalStorageService {
constructor() {}
setSavedState(state: any, localStorageKey: string) {
localStorage.setItem(localStorageKey, JSON.stringify(state));
}
getSavedState(localStorageKey: string): any {
return JSON.parse(localStorage.getItem(localStorageKey));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment