mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 14:31:52 +01:00
9 lines
220 B
JavaScript
Vendored
9 lines
220 B
JavaScript
Vendored
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; |