Closed rmdort closed 4 years ago
If you run
parser.parse(IF(20 < 0, "yep", "nope")) => nope
parser.parse(IF(20 < 0, "yep", "nope"))
nope
With parseAsync
parser.parseAsync(IF(20 < 0, "yep", "nope")) => yep
parser.parseAsync(IF(20 < 0, "yep", "nope"))
yep
Any reason this is happening?
https://github.com/LesterLyu/fast-formula-parser/releases/tag/1.0.16
Thank you.
If you run
parser.parse(IF(20 < 0, "yep", "nope"))
=>nope
With parseAsync
parser.parseAsync(IF(20 < 0, "yep", "nope"))
=>yep
Any reason this is happening?