mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +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; |