use crateformat;
pub use ;
/// Serializes a [`serde::Serialize`] value using this crate's compact JSON
/// formatter.
///
/// ```
/// # use std::collections::HashMap;
/// # use jjpwrgem_parse::format::serde::uglify_serializable;
/// let map: HashMap<String, String> =
/// HashMap::from([("rust is a must".to_string(), "🦀".to_string())]);
/// assert_eq!(
/// uglify_serializable(map).unwrap(),
/// r#"{"rust is a must":"🦀"}"#
/// );
/// ```