Demo for query storing

Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/trim-repeated/index.js b/node_modules/trim-repeated/index.js
new file mode 100644
index 0000000..cb67a69
--- /dev/null
+++ b/node_modules/trim-repeated/index.js
@@ -0,0 +1,10 @@
+'use strict';
+var escapeStringRegexp = require('escape-string-regexp');
+
+module.exports = function (str, target) {
+	if (typeof str !== 'string' || typeof target !== 'string') {
+		throw new TypeError('Expected a string');
+	}
+
+	return str.replace(new RegExp('(?:' + escapeStringRegexp(target) + '){2,}', 'g'), target);
+};
diff --git a/node_modules/trim-repeated/license b/node_modules/trim-repeated/license
new file mode 100644
index 0000000..654d0bf
--- /dev/null
+++ b/node_modules/trim-repeated/license
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
+
+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/trim-repeated/package.json b/node_modules/trim-repeated/package.json
new file mode 100644
index 0000000..5dfaf2e
--- /dev/null
+++ b/node_modules/trim-repeated/package.json
@@ -0,0 +1,73 @@
+{
+  "_from": "trim-repeated@^1.0.0",
+  "_id": "trim-repeated@1.0.0",
+  "_inBundle": false,
+  "_integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=",
+  "_location": "/trim-repeated",
+  "_phantomChildren": {},
+  "_requested": {
+    "type": "range",
+    "registry": true,
+    "raw": "trim-repeated@^1.0.0",
+    "name": "trim-repeated",
+    "escapedName": "trim-repeated",
+    "rawSpec": "^1.0.0",
+    "saveSpec": null,
+    "fetchSpec": "^1.0.0"
+  },
+  "_requiredBy": [
+    "/filenamify"
+  ],
+  "_resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz",
+  "_shasum": "e3646a2ea4e891312bf7eace6cfb05380bc01c21",
+  "_spec": "trim-repeated@^1.0.0",
+  "_where": "C:\\Users\\marcr\\Desktop\\KorAp\\Git\\Kalamar\\node_modules\\filenamify",
+  "author": {
+    "name": "Sindre Sorhus",
+    "email": "sindresorhus@gmail.com",
+    "url": "sindresorhus.com"
+  },
+  "bugs": {
+    "url": "https://github.com/sindresorhus/trim-repeated/issues"
+  },
+  "bundleDependencies": false,
+  "dependencies": {
+    "escape-string-regexp": "^1.0.2"
+  },
+  "deprecated": false,
+  "description": "Trim a consecutively repeated substring: foo--bar---baz → foo-bar-baz",
+  "devDependencies": {
+    "ava": "0.0.4"
+  },
+  "engines": {
+    "node": ">=0.10.0"
+  },
+  "files": [
+    "index.js"
+  ],
+  "homepage": "https://github.com/sindresorhus/trim-repeated#readme",
+  "keywords": [
+    "condense",
+    "collapse",
+    "compact",
+    "consecutive",
+    "repeated",
+    "string",
+    "str",
+    "trim",
+    "remove",
+    "strip",
+    "character",
+    "char"
+  ],
+  "license": "MIT",
+  "name": "trim-repeated",
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/sindresorhus/trim-repeated.git"
+  },
+  "scripts": {
+    "test": "node test.js"
+  },
+  "version": "1.0.0"
+}
diff --git a/node_modules/trim-repeated/readme.md b/node_modules/trim-repeated/readme.md
new file mode 100644
index 0000000..7f5a7a7
--- /dev/null
+++ b/node_modules/trim-repeated/readme.md
@@ -0,0 +1,47 @@
+# trim-repeated [![Build Status](https://travis-ci.org/sindresorhus/trim-repeated.svg?branch=master)](https://travis-ci.org/sindresorhus/trim-repeated)
+
+> Trim a consecutively repeated substring: `foo--bar---baz` → `foo-bar-baz`
+
+
+## Install
+
+```
+$ npm install --save trim-repeated
+```
+
+
+## Usage
+
+```js
+var trimRepeated = require('trim-repeated');
+
+trimRepeated('foo--bar---baz', '-');
+//=> 'foo-bar-baz'
+
+trimRepeated('foo@#@#baz', '@#');
+//=> 'foo@#baz'
+```
+
+### trimRepeated(input, target)
+
+#### input
+
+*Required*  
+Type: `string`
+
+#### target
+
+*Required*  
+Type: `string`
+
+Substring to trim.
+
+
+## Related
+
+- [`condense-whitespace`](https://github.com/sindresorhus/condense-whitespace) - Remove leading, trailing and repeated whitespace from a string
+
+
+## License
+
+MIT © [Sindre Sorhus](http://sindresorhus.com)