export default class LocalStorageMock {
constructor() {
this.store = {};
}
clear() {
getItem(key) {
return this.store[key];
setItem(key, value) {
this.store[key] = value.toString();
removeItem(key) {
delete this.store[key];