add module that exports the config location

This commit is contained in:
Guillermo Rauch 2016-07-07 07:09:37 -07:00
parent 336cdd25ab
commit 40d8d9c843

4
config-path.js Normal file
View file

@ -0,0 +1,4 @@
const { homedir } = require('os');
const { resolve } = require('path');
module.exports = resolve(homedir(), '.hyperterm.js');