New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-minify-dead-code-elimination-while-loop-fixed

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-minify-dead-code-elimination-while-loop-fixed

* Fork from <https://github.com/babel/minify/tree/0.3.x/packages/babel-plugin-minify-dead-code-elimination> * Fix issue <https://github.com/babel/babel/issues/11343>

  • 0.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

babel-plugin-minify-dead-code-elimination-while-loop-fixed

  • Fork from https://github.com/babel/minify/tree/0.3.x/packages/babel-plugin-minify-dead-code-elimination
  • Fix issue https://github.com/babel/babel/issues/11343

Inlines bindings when possible. Tries to evaluate expressions and prunes unreachable as a result.

Example

In

function foo() {var x = 1;}
function bar() { var x = f(); }
function baz() {
  var x = 1;
  console.log(x);
  function unused() {
    return 5;
  }
}

Out

function foo() {}
function bar() { f(); }
function baz() {
  console.log(1);
}

Installation

npm install babel-plugin-minify-dead-code-elimination-while-loop-fixed

Usage

.babelrc

// without options
{
  "plugins": ["minify-dead-code-elimination-while-loop-fixed"]
}

// with options
{
  "plugins": ["minify-dead-code-elimination-while-loop-fixed", { "optimizeRawSize": true }]
}

Via CLI

babel --plugins minify-dead-code-elimination-while-loop-fixed script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["minify-dead-code-elimination-while-loop-fixed"]
});

Options

  • keepFnName - prevent plugin from removing function name. Useful for code depending on fn.name
  • keepFnArgs - prevent plugin from removing function args. Useful for code depending on fn.length
  • keepClassName - prevent plugin from removing class name. Useful for code depending on cls.name
  • tdz - Account for TDZ (Temporal Dead Zone)

Keywords

FAQs

Package last updated on 10 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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