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

babel-plugin-aexpr-source-transformation

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-aexpr-source-transformation - npm Package Compare versions

Comparing version 2.3.7 to 2.3.8

6

dist/index.js

@@ -283,2 +283,5 @@ "use strict";

}
if (t.isSuper(path.node.object)) {
return;
}
if (isGenerated(path)) {

@@ -294,2 +297,5 @@ return;

}
if (path.node.callee && t.isSuper(path.node.callee.object)) {
return;
}

@@ -296,0 +302,0 @@ // check whether we call a MemberExpression

2

index.js

@@ -385,2 +385,3 @@ const AEXPR_IDENTIFIER_NAME = "aexpr";

if(t.isUpdateExpression(path.parent) && path.key === 'argument') { return; }
if(t.isSuper(path.node.object)) { return; }
if(isGenerated(path)) { return; }

@@ -401,2 +402,3 @@ //FLAG_SHOULD_NOT_REWRITE_ASSIGNMENT_EXPRESSION

if(isGenerated(path)) { return; }
if(path.node.callee && t.isSuper(path.node.callee.object)) { return; }

@@ -403,0 +405,0 @@ // check whether we call a MemberExpression

2

package.json
{
"name": "babel-plugin-aexpr-source-transformation",
"version": "2.3.7",
"version": "2.3.8",
"description": "3rd implementation strategy of active expressions, via a babel transformation",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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