safenet
Version:
Low-level javascript API wrapper for communicating with the SAFE Network launcher
14 lines • 333 B
JavaScript
// The storage object only needs to contain "save", "clear", and "get"
module.exports = {
localStorage: {
set: function(string) {
localStorage.setItem('auth', string);
},
get: function() {
return localStorage.getItem('auth');
},
clear: function() {
localStorage.removeItem('auth');
}
}
}