Demo for query storing

Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/irregular-plurals/index.js b/node_modules/irregular-plurals/index.js
new file mode 100644
index 0000000..afe0e5c
--- /dev/null
+++ b/node_modules/irregular-plurals/index.js
@@ -0,0 +1,15 @@
+'use strict';
+const irregularPlurals = require('./irregular-plurals.json');
+
+const map = new Map();
+// TODO: Use Object.entries when targeting Node.js 8
+for (const key of Object.keys(irregularPlurals)) {
+	map.set(key, irregularPlurals[key]);
+}
+
+// Ensure nobody can modify each others Map
+Object.defineProperty(module, 'exports', {
+	get() {
+		return map;
+	}
+});