New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

excel-formula-parser

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

excel-formula-parser

Parse excel formula into a tree

latest
Source
npmnpm
Version
1.1.0
Version published
Weekly downloads
8.7K
-17.71%
Maintainers
1
Weekly downloads
 
Created
Source

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.

License

MIT

Keywords

excel

FAQs

Package last updated on 12 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts