blob: c41d5525725f9134ec8093c7cb24dbd4f580d7e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class Storage{
static get = (key)=>{
if(!key)throw("Storage.get expects a 'key' - 'key' can't be null");
if(!localStorage.getItem(key)) return null;
return localStorage.getItem(key);
}
static set = (key, value)=>{
if(!key||!value){
throw("Storag.set expects a 'key' and a 'value' - 'value' & 'key' can't be null");
}
localStorage.setItem(key, JSON.stringify(value));
}
}
export default Storage;
|