UNPKG

257 BJavaScriptView Raw
1'use strict';
2
3// To generate parser.js run the following command in the current directory:
4//
5// npx jison-gho parser.jison -o parser.js
6
7const parse = require('./parser').parse;
8
9module.exports = function parseCalcExpression(exp) {
10 return parse(exp);
11};