Demo for query storing
Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/is-valid-glob/LICENSE b/node_modules/is-valid-glob/LICENSE
new file mode 100644
index 0000000..83b56e7
--- /dev/null
+++ b/node_modules/is-valid-glob/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2015-2017, Jon Schlinkert
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/node_modules/is-valid-glob/README.md b/node_modules/is-valid-glob/README.md
new file mode 100644
index 0000000..80100a6
--- /dev/null
+++ b/node_modules/is-valid-glob/README.md
@@ -0,0 +1,103 @@
+# is-valid-glob [](https://www.npmjs.com/package/is-valid-glob) [](https://npmjs.org/package/is-valid-glob) [](https://npmjs.org/package/is-valid-glob) [](https://travis-ci.org/jonschlinkert/is-valid-glob)
+
+> Return true if a value is a valid glob pattern or patterns.
+
+## Install
+
+Install with [npm](https://www.npmjs.com/):
+
+```sh
+$ npm install --save is-valid-glob
+```
+
+## Usage
+
+This really just checks to make sure that a pattern is either a string or array, and if it's an array it's either empty or consists of only strings.
+
+```js
+var isValidGlob = require('is-valid-glob');
+
+isValidGlob('foo/*.js');
+//=> true
+```
+
+**Valid patterns**
+
+```js
+isValidGlob('a');
+isValidGlob('a.js');
+isValidGlob('*.js');
+isValidGlob(['a', 'b']);
+//=> all true
+```
+
+**Invalid patterns**
+
+```js
+isValidGlob();
+isValidGlob('');
+isValidGlob(null);
+isValidGlob(undefined);
+isValidGlob(new Buffer('foo'));
+isValidGlob(['foo', [[]]]);
+isValidGlob(['foo', [['bar']]]);
+isValidGlob(['foo', {}]);
+isValidGlob({});
+isValidGlob([]);
+isValidGlob(['']);
+//=> all false
+```
+
+## About
+
+### Related projects
+
+* [is-glob](https://www.npmjs.com/package/is-glob): Returns `true` if the given string looks like a glob pattern or an extglob pattern… [more](https://github.com/jonschlinkert/is-glob) | [homepage](https://github.com/jonschlinkert/is-glob "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a bet")
+* [micromatch](https://www.npmjs.com/package/micromatch): Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. | [homepage](https://github.com/micromatch/micromatch "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.")
+* [vinyl-fs](https://www.npmjs.com/package/vinyl-fs): Vinyl adapter for the file system | [homepage](http://github.com/wearefractal/vinyl-fs "Vinyl adapter for the file system")
+* [vinyl](https://www.npmjs.com/package/vinyl): Virtual file format. | [homepage](https://github.com/gulpjs/vinyl#readme "Virtual file format.")
+
+### Contributing
+
+Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
+
+### Contributors
+
+| **Commits** | **Contributor** |
+| --- | --- |
+| 9 | [jonschlinkert](https://github.com/jonschlinkert) |
+| 2 | [contra](https://github.com/contra) |
+
+### Building docs
+
+_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
+
+To generate the readme, run the following command:
+
+```sh
+$ npm install -g verbose/verb#dev verb-generate-readme && verb
+```
+
+### Running tests
+
+Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
+
+```sh
+$ npm install && npm test
+```
+
+### Author
+
+**Jon Schlinkert**
+
+* [github/jonschlinkert](https://github.com/jonschlinkert)
+* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)
+
+### License
+
+Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
+Released under the [MIT License](LICENSE).
+
+***
+
+_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 21, 2017._
\ No newline at end of file
diff --git a/node_modules/is-valid-glob/index.js b/node_modules/is-valid-glob/index.js
new file mode 100644
index 0000000..6b1899f
--- /dev/null
+++ b/node_modules/is-valid-glob/index.js
@@ -0,0 +1,21 @@
+'use strict';
+
+module.exports = function isValidGlob(glob) {
+ if (typeof glob === 'string' && glob.length > 0) {
+ return true;
+ }
+ if (Array.isArray(glob)) {
+ return glob.length !== 0 && every(glob);
+ }
+ return false;
+};
+
+function every(arr) {
+ var len = arr.length;
+ while (len--) {
+ if (typeof arr[len] !== 'string' || arr[len].length <= 0) {
+ return false;
+ }
+ }
+ return true;
+}
diff --git a/node_modules/is-valid-glob/package.json b/node_modules/is-valid-glob/package.json
new file mode 100644
index 0000000..24f4e71
--- /dev/null
+++ b/node_modules/is-valid-glob/package.json
@@ -0,0 +1,101 @@
+{
+ "_from": "is-valid-glob@^1.0.0",
+ "_id": "is-valid-glob@1.0.0",
+ "_inBundle": false,
+ "_integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=",
+ "_location": "/is-valid-glob",
+ "_phantomChildren": {},
+ "_requested": {
+ "type": "range",
+ "registry": true,
+ "raw": "is-valid-glob@^1.0.0",
+ "name": "is-valid-glob",
+ "escapedName": "is-valid-glob",
+ "rawSpec": "^1.0.0",
+ "saveSpec": null,
+ "fetchSpec": "^1.0.0"
+ },
+ "_requiredBy": [
+ "/vinyl-fs"
+ ],
+ "_resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz",
+ "_shasum": "29bf3eff701be2d4d315dbacc39bc39fe8f601aa",
+ "_spec": "is-valid-glob@^1.0.0",
+ "_where": "C:\\Users\\marcr\\Desktop\\KorAp\\Git\\Kalamar\\node_modules\\vinyl-fs",
+ "author": {
+ "name": "Jon Schlinkert",
+ "url": "https://github.com/jonschlinkert"
+ },
+ "bugs": {
+ "url": "https://github.com/jonschlinkert/is-valid-glob/issues"
+ },
+ "bundleDependencies": false,
+ "contributors": [
+ {
+ "name": "contra",
+ "url": "http://contra.io"
+ },
+ {
+ "name": "Jon Schlinkert",
+ "url": "http://twitter.com/jonschlinkert"
+ }
+ ],
+ "deprecated": false,
+ "description": "Return true if a value is a valid glob pattern or patterns.",
+ "devDependencies": {
+ "gulp-format-md": "^0.1.12",
+ "mocha": "^3.4.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "files": [
+ "index.js"
+ ],
+ "homepage": "https://github.com/jonschlinkert/is-valid-glob",
+ "keywords": [
+ "array",
+ "check",
+ "glob",
+ "is",
+ "match",
+ "pattern",
+ "patterns",
+ "read",
+ "test",
+ "valid",
+ "validate"
+ ],
+ "license": "MIT",
+ "main": "index.js",
+ "name": "is-valid-glob",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/jonschlinkert/is-valid-glob.git"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "verb": {
+ "related": {
+ "list": [
+ "is-glob",
+ "micromatch",
+ "vinyl-fs",
+ "vinyl"
+ ]
+ },
+ "toc": false,
+ "layout": "default",
+ "tasks": [
+ "readme"
+ ],
+ "plugins": [
+ "gulp-format-md"
+ ],
+ "lint": {
+ "reflinks": true
+ }
+ },
+ "version": "1.0.0"
+}