2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +03:00
Files
bbob/packages/bbob-parser/lib/parse.js
T
2018-06-25 00:53:49 +02:00

9 lines
180 B
JavaScript

const Parser = require('./Parser');
module.exports = function parse(input, options) {
const parser = new Parser(input, options);
const ast = parser.parse();
return ast;
};