Socket
Socket
Sign inDemoInstall

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

Package Overview
Dependencies
4
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

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>


Version published
Maintainers
2
Weekly downloads
639
increased by9.23%

Weekly downloads

Readme

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

Last updated on 10 May 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc