thelounge/src/helper.js
2014-10-04 16:22:23 -07:00

11 lines
220 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");
};