mirror of
https://github.com/tiennm99/FBcount.git
synced 2026-05-14 12:58:07 +00:00
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
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; |