mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-06 23:14:58 +00:00
17 lines
428 B
JavaScript
17 lines
428 B
JavaScript
////////////////////////////////////////////////////////////////////////
|
|
// Config API
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
var XML = require("lib/xml");
|
|
var configObject;
|
|
|
|
var readConfig = function(path) {
|
|
if (typeof(configObject) === "undefined") {
|
|
configObject = XML.loadXMLFile("config.xml");
|
|
}
|
|
|
|
return configObject.select(path);
|
|
};
|
|
|
|
exports.readConfig = readConfig;
|