* Adds Actions, Redicers and Middlewares * Adds Http Service * Adds Cancel option for Http Service * Adds HOC's for API Loader, Sidebar and Headers * Adds Random key generator for Routes
17 lines
543 B
JavaScript
17 lines
543 B
JavaScript
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");
|
|
}
|
|
value = (typeof value=="string") ? value : JSON.stringify(value);
|
|
localStorage.setItem(key, value);
|
|
}
|
|
}
|
|
|
|
export default Storage; |