1 2 3 4 5 6 7 8 9 10 11 12 13
[‼️]: ✏️README.mdt # b62 ```rust #[test] fn test() { let a = b"12345sdfghjuEFEFZ"; let b = b62::e(a); let o = b62::d(&b).unwrap(); assert_eq!(&a[..], &o[..]); } ```