Socket
Socket
Sign inDemoInstall

babel-plugin-minify-simplify

Package Overview
Dependencies
Maintainers
5
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-minify-simplify - npm Package Compare versions

Comparing version 0.5.0-alpha.bce578e2 to 0.5.0-alpha.beb87b9a

36

lib/index.js

@@ -963,13 +963,15 @@ "use strict";

function earlyReturnTransform(path) {
const node = path.node;
const block = path.get("body");
if (!t.isBlockStatement(node.body)) {
if (!block.isBlockStatement()) {
return;
}
for (let i = node.body.body.length; i >= 0; i--) {
const statement = node.body.body[i];
const body = block.get("body");
if (t.isIfStatement(statement) && !statement.alternate && t.isReturnStatement(statement.consequent) && !statement.consequent.argument) {
genericEarlyExitTransform(path.get("body").get("body")[i]);
for (let i = body.length - 1; i >= 0; i--) {
const statement = body[i];
if (t.isIfStatement(statement.node) && !statement.node.alternate && t.isReturnStatement(statement.node.consequent) && !statement.node.consequent.argument) {
genericEarlyExitTransform(statement);
}

@@ -980,19 +982,23 @@ }

function earlyContinueTransform(path) {
const node = path.node;
const block = path.get("body");
if (!t.isBlockStatement(node.body)) {
if (!block.isBlockStatement()) {
return;
}
for (let i = node.body.body.length; i >= 0; i--) {
const statement = node.body.body[i];
let body = block.get("body");
if (t.isIfStatement(statement) && !statement.alternate && t.isContinueStatement(statement.consequent) && !statement.consequent.label) {
genericEarlyExitTransform(path.get("body").get("body")[i]);
for (let i = body.length - 1; i >= 0; i--) {
const statement = body[i];
if (t.isIfStatement(statement.node) && !statement.node.alternate && t.isContinueStatement(statement.node.consequent) && !statement.node.consequent.label) {
genericEarlyExitTransform(statement);
}
} // We may have reduced the body to a single statement.
} // because we might have folded or removed statements
if (node.body.body.length === 1 && !needsBlock(node.body, node)) {
path.get("body").replaceWith(node.body.body[0]);
body = block.get("body"); // We may have reduced the body to a single statement.
if (body.length === 1 && !needsBlock(block.node, path.node)) {
block.replaceWith(body[0].node);
}

@@ -999,0 +1005,0 @@ }

{
"name": "babel-plugin-minify-simplify",
"version": "0.5.0-alpha.bce578e2",
"version": "0.5.0-alpha.beb87b9a",
"description": "",

@@ -15,6 +15,6 @@ "keywords": [

"dependencies": {
"babel-helper-flip-expressions": "^0.5.0-alpha.bce578e2",
"babel-helper-flip-expressions": "^0.5.0-alpha.beb87b9a",
"babel-helper-is-nodes-equiv": "^0.0.1",
"babel-helper-to-multiple-sequence-expressions": "^0.5.0-alpha.bce578e2"
"babel-helper-to-multiple-sequence-expressions": "^0.5.0-alpha.beb87b9a"
}
}
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