mni 0.1.1

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

pub mod css;
pub mod js;
pub mod json;

mod compress;
mod mangle;
mod whitespace;