Demo for query storing
Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/path-root-regex/index.js b/node_modules/path-root-regex/index.js
new file mode 100644
index 0000000..b6eeea4
--- /dev/null
+++ b/node_modules/path-root-regex/index.js
@@ -0,0 +1,13 @@
+/*!
+ * path-root-regex <https://github.com/jonschlinkert/path-root-regex>
+ *
+ * Copyright (c) 2016, Jon Schlinkert.
+ * Licensed under the MIT License.
+ */
+
+'use strict';
+
+module.exports = function() {
+ // Regex is modified from the split device regex in the node.js path module.
+ return /^([a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?([\\\/])?/;
+};