summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/nth-check/index.js
blob: 3253bbd07f0f9f7ca320a78bd2239e98102c3322 (plain)
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;