sc_decode 0.1.2

Special character decoding
Documentation
1
2
3
4
5
6
fn main() {
    println!("hello world!");
    let arg = "123%40gmail.com";
    let val = sc_decode::decode(arg);
    assert_eq!("123@gmail.com", val);
}