welsonjs/lib/config.js

9 lines
307 B
JavaScript
Raw Normal View History

2020-11-05 03:04:50 +00:00
////////////////////////////////////////////////////////////////////////
// Config API
////////////////////////////////////////////////////////////////////////
var XML = require("lib/xml");
2020-11-25 08:08:17 +00:00
exports.getValue = function(key) {
return XML.load("config.xml").select("/Config/" + key).first().getText();
2020-11-05 03:04:50 +00:00
};