thelounge/src/helper.js
2015-10-26 03:01:47 +01:00

11 lines
219 B
JavaScript

var path = require("path");
module.exports = {
HOME: (process.env.HOME || process.env.USERPROFILE) + "/.shout",
getConfig: getConfig
};
function getConfig() {
return require(path.resolve(this.HOME) + "/config");
}