Socket
Socket
Sign inDemoInstall

@babel/plugin-proposal-logical-assignment-operators

Package Overview
Dependencies
Maintainers
5
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/plugin-proposal-logical-assignment-operators - npm Package Compare versions

Comparing version 7.0.0-beta.47 to 7.0.0-beta.48

28

lib/index.js

@@ -11,3 +11,3 @@ "use strict";

_helperPluginUtils = function _helperPluginUtils() {
_helperPluginUtils = function () {
return data;

@@ -22,3 +22,3 @@ };

_pluginSyntaxLogicalAssignmentOperators = function _pluginSyntaxLogicalAssignmentOperators() {
_pluginSyntaxLogicalAssignmentOperators = function () {
return data;

@@ -33,3 +33,3 @@ };

_core = function _core() {
_core = function () {
return data;

@@ -49,7 +49,11 @@ };

AssignmentExpression(path) {
const node = path.node,
scope = path.scope;
const operator = node.operator,
left = node.left,
right = node.right;
const {
node,
scope
} = path;
const {
operator,
left,
right
} = node;

@@ -63,5 +67,7 @@ if (operator !== "||=" && operator !== "&&=" && operator !== "??=") {

if (_core().types.isMemberExpression(left)) {
const object = left.object,
property = left.property,
computed = left.computed;
const {
object,
property,
computed
} = left;
const memo = scope.maybeGenerateMemoised(object);

@@ -68,0 +74,0 @@

{
"name": "@babel/plugin-proposal-logical-assignment-operators",
"version": "7.0.0-beta.47",
"version": "7.0.0-beta.48",
"description": "Transforms logical assignment operators into short-circuited assignments",

@@ -12,14 +12,14 @@ "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-logical-assignment-operators",

"dependencies": {
"@babel/helper-plugin-utils": "7.0.0-beta.47",
"@babel/plugin-syntax-logical-assignment-operators": "7.0.0-beta.47"
"@babel/helper-plugin-utils": "7.0.0-beta.48",
"@babel/plugin-syntax-logical-assignment-operators": "7.0.0-beta.48"
},
"peerDependencies": {
"@babel/core": "7.0.0-beta.47"
"@babel/core": "7.0.0-beta.48"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.47",
"@babel/helper-plugin-test-runner": "7.0.0-beta.47",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.0.0-beta.47",
"@babel/plugin-syntax-nullish-coalescing-operator": "7.0.0-beta.47"
"@babel/core": "7.0.0-beta.48",
"@babel/helper-plugin-test-runner": "7.0.0-beta.48",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.0.0-beta.48",
"@babel/plugin-syntax-nullish-coalescing-operator": "7.0.0-beta.48"
}
}
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