Demo for query storing
Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/nth-check/index.js b/node_modules/nth-check/index.js
new file mode 100644
index 0000000..3253bbd
--- /dev/null
+++ b/node_modules/nth-check/index.js
@@ -0,0 +1,9 @@
+var parse = require("./parse.js"),
+ compile = require("./compile.js");
+
+module.exports = function nthCheck(formula){
+ return compile(parse(formula));
+};
+
+module.exports.parse = parse;
+module.exports.compile = compile;
\ No newline at end of file