Demo for query storing

Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/lpad-align/index.js b/node_modules/lpad-align/index.js
new file mode 100644
index 0000000..8973d02
--- /dev/null
+++ b/node_modules/lpad-align/index.js
@@ -0,0 +1,17 @@
+'use strict';
+var indentString = require('indent-string');
+var longest = require('longest');
+
+module.exports = function (str, arr, indent) {
+	var pad = typeof indent === 'number' ? indent : 0;
+
+	if (typeof str !== 'string') {
+		throw new TypeError('Expected a `string`, got `' + typeof str + '`');
+	}
+
+	if (!Array.isArray(arr)) {
+		throw new TypeError('Expected an `Array`, got `' + typeof arr + '`');
+	}
+
+	return indentString(str, ' ', pad + longest(arr).length - str.length);
+};