Dashboard sipadu mbip
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789
  1. var parse = require("./parse.js"),
  2. compile = require("./compile.js");
  3. module.exports = function nthCheck(formula){
  4. return compile(parse(formula));
  5. };
  6. module.exports.parse = parse;
  7. module.exports.compile = compile;