// Take a look at the license at the top of the repository in the LICENSE file.
/// Minifies a given CSS source code.
///
/// # Example
///
/// ```rust
/// extern crate minifier;
/// use minifier::css::minify;
///
/// fn main() {
/// let css = r#"
/// .foo > p {
/// color: red;
/// }"#.into();
/// let css_minified = minify(css);
/// }
/// ```