Demo for query storing

Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/is-relative/index.js b/node_modules/is-relative/index.js
new file mode 100644
index 0000000..3756357
--- /dev/null
+++ b/node_modules/is-relative/index.js
@@ -0,0 +1,12 @@
+'use strict';
+
+var isUncPath = require('is-unc-path');
+
+module.exports = function isRelative(filepath) {
+  if (typeof filepath !== 'string') {
+    throw new TypeError('expected filepath to be a string');
+  }
+
+  // Windows UNC paths are always considered to be absolute.
+  return !isUncPath(filepath) && !/^([a-z]:)?[\\\/]/i.test(filepath);
+};