pacc 4.18.1 → 4.18.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pacc",
3
- "version": "4.18.1",
3
+ "version": "4.18.2",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -159,8 +159,8 @@ export function parse(context) {
159
159
  eval: (node, current) =>
160
160
  binop(
161
161
  token,
162
- left?.eval ? left.eval(left, current) : left,
163
- right?.eval ? right.eval(right, current) : right,
162
+ left.eval ? left.eval(left, current) : left,
163
+ right.eval ? right.eval(right, current) : right,
164
164
  binopError
165
165
  ),
166
166
  token,
@@ -199,8 +199,8 @@ export function parse(context) {
199
199
  eval: (node, current) =>
200
200
  binop(
201
201
  token,
202
- left?.eval ? left.eval(left, current) : left,
203
- right?.eval ? right.eval(right, current) : right,
202
+ left.eval ? left.eval(left, current) : left,
203
+ right.eval ? right.eval(right, current) : right,
204
204
  binopError
205
205
  ),
206
206
  token,