filestash/client/data/password.js
2017-06-27 21:59:40 +10:00

14 lines
234 B
JavaScript

function keyManager(){
let key = null;
return {
get: function(){
return key;
},
set: function(_key){
key = _key || null
}
}
}
export const password = keyManager();