1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-03 12:20:04 +02:00

add some packages

This commit is contained in:
s2
2018-05-05 13:54:07 +02:00
parent 48c1138518
commit ff6e20677d
3738 changed files with 215920 additions and 0 deletions

81
node_modules/babel-plugin-minify-simplify/README.md generated vendored Normal file
View File

@@ -0,0 +1,81 @@
# babel-plugin-minify-simplify
> Simplifies code for minification by reducing statements into expressions and making expressions uniform where possible.
## Example
### Reduce statement into expression
**In**
```js
function foo() {
if (x) a();
}
function foo2() {
if (x) a();
else b();
}
```
**Out**
```js
function foo() {
x && a();
}
function foo2() {
x ? a() : b();
}
```
### Make expression as uniform as possible for better compressibility
**In**
```js
undefined
foo['bar']
Number(foo)
```
**Out**
```js
void 0
foo.bar
+foo
```
## Installation
```sh
npm install babel-plugin-minify-simplify
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["minify-simplify"]
}
```
### Via CLI
```sh
babel --plugins minify-simplify script.js
```
### Via Node API
```javascript
require("@babel/core").transform("code", {
plugins: ["minify-simplify"]
});
```