thelounge/src/helper.js
2014-10-03 16:42:39 -07:00

9 lines
180 B
JavaScript

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