thelounge/src/helper.js

9 lines
180 B
JavaScript
Raw Normal View History

2014-10-04 01:33:44 +02:00
module.exports = {
HOME: (process.env.HOME || process.env.USERPROFILE) + "/.shout",
2014-10-04 01:33:44 +02:00
getConfig: getConfig
};
2014-10-04 01:33:44 +02:00
function getConfig() {
return require(this.HOME + "/config.js");
};