A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/sindresorhus/maxmin below:

sindresorhus/maxmin: Get a pretty output of the original, minified, gzipped size of a string or buffer: 130 B → 91 B → 53 B (gzip)

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, for example, a build-system.

import maxmin from '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)'
maxmin(max, min, useGzip?)

Type: string | Buffer | number

Original string or its size in bytes.

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.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4