You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 220B

123456789
  1. var parse = require("./parse.js"),
  2. compile = require("./compile.js");
  3. module.exports = function nthCheck(formula){
  4. return compile(parse(formula));
  5. };
  6. module.exports.parse = parse;
  7. module.exports.compile = compile;