mirror of
https://github.com/shanmiteko/LotteryAutoScript.git
synced 2026-06-12 21:03:13 +08:00
12 lines
179 B
JavaScript
12 lines
179 B
JavaScript
let GlobalVar = {
|
|
inner: {},
|
|
get(key) {
|
|
return this.inner[key]
|
|
},
|
|
set(key, value) {
|
|
this.inner[key] = value
|
|
},
|
|
};
|
|
|
|
|
|
module.exports = GlobalVar; |