mirror of
https://github.com/MCSManager/MCSManager.git
synced 2025-04-06 17:10:29 +08:00
11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
var _VAR_LIST = {};
|
|
|
|
|
|
module.exports.set = (key, value) => {
|
|
_VAR_LIST[key] = value;
|
|
}
|
|
|
|
|
|
module.exports.get = (key, def = undefined) => {
|
|
return _VAR_LIST[key] || def;
|
|
} |