excel-formula-parser
v1.1.0
Published
Parse excel formula into a tree
Downloads
2,241
Readme
excel-formula-parser
Parse excel formula into a tree.
Install
npm install excel-formula-parser -S
or
yarn add excel-formula-parser
Usage
const {parse, visit} = require('excel-formula-parser');
const tree = parse('SUM(1, 2)');
visit(tree, visitor);
API
const {parse, visit} = require('excel-formula-parser');
parse(formula)
Parse a formula into an expression tree.
- formula: string - Excel formula
Returns: ast node
visit(tree, visitor)
Visit nodes of the tree.
- tree: ast node
- visitor: object - See excel-formula-ast visitor.
License
MIT