You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Minor changes to make the type definitions more accurate
Add boolean and array to `Value` type, since `evaluate` can return those
```js
Parser.evaluate("true") // returns boolean
Parser.evaluate("[1,2,3]") // returns array
```
Update `evaluate`'s and `simplify`'s definition to only take an object of
`Value`s instead of a `Value` (which can also be array/boolean/etc.)
Update `evaluate` to return a `Value` type instead of just `number`
Add `operators.array` to the `ParserOptions`
0 commit comments