summaryrefslogtreecommitdiffstats
path: root/node_modules/home-or-tmp/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/home-or-tmp/index.js')
-rw-r--r--node_modules/home-or-tmp/index.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/node_modules/home-or-tmp/index.js b/node_modules/home-or-tmp/index.js
new file mode 100644
index 0000000..bb67e9b
--- /dev/null
+++ b/node_modules/home-or-tmp/index.js
@@ -0,0 +1,5 @@
+'use strict';
+var osHomedir = require('os-homedir');
+var osTmpdir = require('os-tmpdir');
+
+module.exports = osHomedir() || osTmpdir();