Documentation
1
2
3
4
5
6
7
#[test]
fn test() {
  let a = b"12345sdfghjuEFEFZ";
  let b = b62::e(a);
  let o = b62::d(&b).unwrap();
  assert_eq!(&a[..], &o[..]);
}