57 lines
1.1 KiB
Markdown
57 lines
1.1 KiB
Markdown
# maxmin [](https://travis-ci.org/sindresorhus/maxmin)
|
|
|
|
> Get a pretty output of the original, minified, gzipped size of a string or buffer
|
|
|
|

|
|
|
|
Useful for logging the difference between original and minified file in e.g. a build-system.
|
|
|
|
|
|
## Install
|
|
|
|
```bash
|
|
$ npm install --save maxmin
|
|
```
|
|
|
|
|
|
## Example
|
|
|
|
```js
|
|
var maxmin = require('maxmin');
|
|
var max = 'function smoothRangeRandom(min,max){var num=Math.floor(Math.random()*(max-min+1)+min);return this.prev=num===this.prev?++num:num};';
|
|
var min = '(function(b,c){var a=Math.floor(Math.random()*(c-b+1)+b);return this.a=a===this.a?++a:a})()';
|
|
|
|
console.log(maxmin(max, min, true));
|
|
//=> 130 B → 91 B → 53 B (gzip)
|
|
```
|
|
|
|
## API
|
|
|
|
### maxmin(max, min, useGzip)
|
|
|
|
#### max
|
|
|
|
*Required*
|
|
Type: `String`|`Buffer`
|
|
|
|
Original string.
|
|
|
|
#### min
|
|
|
|
*Required*
|
|
Type: `String`|`Buffer`
|
|
|
|
Minified string.
|
|
|
|
#### useGzip
|
|
|
|
Type: `Boolean`
|
|
Default: `false`
|
|
|
|
Show gzipped size of `min`. Pretty slow.
|
|
|
|
|
|
## License
|
|
|
|
[MIT](http://opensource.org/licenses/MIT) © [Sindre Sorhus](http://sindresorhus.com)
|