xavier_internal/deserialize/
decode.rs

1#[macro_export]
2macro_rules! decode {
3    ($expr:expr) => { xavier::deserialize::decode::decode($expr).to_string() };
4}
5
6pub fn decode(input: &str) -> String {
7    html_escape::decode_html_entities(input).to_string()
8}