🎉 Initial Commit
This commit is contained in:
16
src/services/storage.service.js
Normal file
16
src/services/storage.service.js
Normal file
@@ -0,0 +1,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;
|
||||
Reference in New Issue
Block a user