abstract-syntax-tree
Advanced tools
Comparing version 2.17.6 to 2.18.0
{ | ||
"name": "abstract-syntax-tree", | ||
"version": "2.17.6", | ||
"version": "2.18.0", | ||
"description": "abstract syntax tree", | ||
@@ -15,3 +15,3 @@ "main": "index.js", | ||
"engines": { | ||
"node": ">=12.20.1" | ||
"node": ">=14.0.0" | ||
}, | ||
@@ -39,9 +39,9 @@ "repository": { | ||
"devDependencies": { | ||
"@rollup/plugin-commonjs": "^18.0.0", | ||
"@rollup/plugin-commonjs": "^19.0.0", | ||
"@rollup/plugin-json": "4.1.0", | ||
"@rollup/plugin-node-resolve": "^11.2.1", | ||
"@rollup/plugin-node-resolve": "^13.0.0", | ||
"@rollup/plugin-virtual": "2.0.3", | ||
"ava": "^3.15.0", | ||
"nyc": "15.1.0", | ||
"rollup": "^2.45.2", | ||
"rollup": "^2.47.0", | ||
"rollup-plugin-node-polyfills": "0.2.1", | ||
@@ -48,0 +48,0 @@ "rollup-plugin-terser": "7.0.2", |
const isGlobalProperty = require('./utilities/isGlobalProperty') | ||
const LOGICAL_OPERATORS = ['&&', '||'] | ||
const LOGICAL_OPERATORS = ['&&', '||', '??'] | ||
@@ -44,2 +44,3 @@ function isLogicalOperator (operator) { | ||
case '||': return serialize(left || right) | ||
case '??': return serialize(left ?? right) | ||
} | ||
@@ -46,0 +47,0 @@ } |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
389026
128
3020