From 40d8d9c843670a5f306bd8c44ded5d56fabc0e65 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Thu, 7 Jul 2016 07:09:37 -0700 Subject: [PATCH] add module that exports the config location --- config-path.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 config-path.js diff --git a/config-path.js b/config-path.js new file mode 100644 index 00000000..289dca92 --- /dev/null +++ b/config-path.js @@ -0,0 +1,4 @@ +const { homedir } = require('os'); +const { resolve } = require('path'); + +module.exports = resolve(homedir(), '.hyperterm.js');