https://github.com/raxjs/babel-plugin-minify-dead-code-elimination-while-loop-fixed
https://github.com/raxjs/babel-plugin-minify-dead-code-elimination-while-loop-fixed
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/raxjs/babel-plugin-minify-dead-code-elimination-while-loop-fixed
- Owner: raxjs
- License: mit
- Created: 2022-05-10T09:48:53.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-15T16:48:41.000Z (about 4 years ago)
- Last Synced: 2025-12-31T04:12:47.294Z (6 months ago)
- Language: JavaScript
- Size: 12.7 KB
- Stars: 0
- Watchers: 7
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# babel-plugin-minify-dead-code-elimination-while-loop-fixed
* Fork from
* Fix issue
Inlines bindings when possible. Tries to evaluate expressions and prunes unreachable as a result.
## Example
**In**
```javascript
function foo() {var x = 1;}
function bar() { var x = f(); }
function baz() {
var x = 1;
console.log(x);
function unused() {
return 5;
}
}
```
**Out**
```javascript
function foo() {}
function bar() { f(); }
function baz() {
console.log(1);
}
```
## Installation
```sh
npm install babel-plugin-minify-dead-code-elimination-while-loop-fixed
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
// without options
{
"plugins": ["minify-dead-code-elimination-while-loop-fixed"]
}
// with options
{
"plugins": ["minify-dead-code-elimination-while-loop-fixed", { "optimizeRawSize": true }]
}
```
### Via CLI
```sh
babel --plugins minify-dead-code-elimination-while-loop-fixed script.js
```
### Via Node API
```javascript
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)