welsonjs/lib/config.js
2020-11-25 17:08:17 +09:00

9 lines
307 B
JavaScript

////////////////////////////////////////////////////////////////////////
// Config API
////////////////////////////////////////////////////////////////////////
var XML = require("lib/xml");
exports.getValue = function(key) {
return XML.load("config.xml").select("/Config/" + key).first().getText();
};