excel-formula-tokenizer icon indicating copy to clipboard operation
excel-formula-tokenizer copied to clipboard

Tokenize Excel formulas

Results 2 excel-formula-tokenizer issues
Sort by recently updated
recently updated
newest added

Some Excel users start formulas always with a `=+` and thus, being able to have an option to keep even `noop` prefixes would be nice. E.g., in a formula like...

Sample Input: ```js tokenize(")") tokenize("1*1)") tokenize("f(x))") tokenize(") + 1") ``` Stack Trace (for any): ``` TypeError: Cannot read property 'type' of undefined at TokenStack.pop (.\node_modules\excel-formula-tokenizer\index.js:100:34) at tokenize (.\node_modules\excel-formula-tokenizer\index.js:480:32) ```