Demo for query storing
Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/temp-dir/index.js b/node_modules/temp-dir/index.js
new file mode 100644
index 0000000..bb45bba
--- /dev/null
+++ b/node_modules/temp-dir/index.js
@@ -0,0 +1,13 @@
+'use strict';
+const fs = require('fs');
+const os = require('os');
+
+const ID = '__RESOLVED_TMP_DIR__';
+
+if (!global[ID]) {
+ Object.defineProperty(global, ID, {
+ value: fs.realpathSync(os.tmpdir())
+ });
+}
+
+module.exports = global[ID];