LotteryAutoScript/lib/GlobalVar.js
2021-07-10 20:37:02 +08:00

12 lines
179 B
JavaScript

let GlobalVar = {
inner: {},
get(key) {
return this.inner[key]
},
set(key, value) {
this.inner[key] = value
},
};
module.exports = GlobalVar;