//! Utility functions used by subplotlib or the generated test functions
/// Decode a base64 string.
////// If the result is not a valid utf8 string then it is lossily coerced.
////// # Panics
////// Will panic if it's not valid base64 leading to a string.
pubfnbase64_decode(input:&str)-> String{let dec =base64::decode(input).expect("bad base64");String::from_utf8_lossy(&dec).to_string()}