Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

abstract-syntax-tree

Package Overview
Dependencies
Maintainers
2
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

abstract-syntax-tree - npm Package Compare versions

Comparing version 2.17.6 to 2.18.0

10

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc