Codebase list node-nth-check / fae528a8-385c-49ee-b306-df9ce3451260/main index.js
fae528a8-385c-49ee-b306-df9ce3451260/main

Tree @fae528a8-385c-49ee-b306-df9ce3451260/main (Download .tar.gz)

index.js @fae528a8-385c-49ee-b306-df9ce3451260/mainraw · history · blame

1
2
3
4
5
6
7
8
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;