mni 0.2.0

A world-class minifier for JavaScript, CSS, JSON, HTML, and SVG written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Minification implementations for different formats

pub mod css;
pub mod html;
pub mod js;
pub mod json;
pub mod svg;

mod compress;
mod mangle;
mod whitespace;