José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | 4 years ago | |
---|---|---|
.. | ||
index.js | 4 years ago | |
license | 4 years ago | |
package.json | 4 years ago | |
readme.md | 4 years ago |
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.
$ npm install --save maxmin
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)
Required
Type: string
, buffer
, number
Original string or its size in bytes.
Required
Type: string
, buffer
, number
Minified string or its size in bytes.
Type: boolean
Default: false
Show gzipped size of min
. Pretty slow. Not shown when min
is a number
.
MIT © Sindre Sorhus