Demo for query storing

Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/is-unc-path/index.js b/node_modules/is-unc-path/index.js
new file mode 100644
index 0000000..a9b839e
--- /dev/null
+++ b/node_modules/is-unc-path/index.js
@@ -0,0 +1,10 @@
+'use strict';
+
+var regex = require('unc-path-regex')();
+
+module.exports = function(filepath) {
+  if (typeof filepath !== 'string') {
+    throw new TypeError('expected a string');
+  }
+  return regex.test(filepath);
+};