| Server IP : 157.230.181.24 / Your IP : 216.73.217.11 Web Server : Apache/2.4.58 (Ubuntu) System : Linux conductive 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64 User : ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/vhosts/convo/node_modules/maxmin/ |
Upload File : |
# 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
```
$ npm install --save maxmin
```
## Usage
```js
const maxmin = require('maxmin');
const max = 'function smoothRangeRandom(min,max){var num=Math.floor(Math.random()*(max-min+1)+min);return this.prev=num===this.prev?++num:num};';
const 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
Type: `string`, `buffer`, `number`
Original string or its size in bytes.
#### min
Type: `string`, `buffer`, `number`
Minified string or its size in bytes.
#### useGzip
Type: `boolean`
Default: `false`
Show gzipped size of `min`. Pretty slow. Not shown when `min` is a `number`.
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)