//! ## Example
//! ```rust
//! extern crate pretty_hash;
//!
//! let hash = pretty_hash::fmt(b"1234").unwrap();
//! assert_eq!(hash, "31323334");
//!
//! let hash = pretty_hash::fmt(b"12345").unwrap();
//! assert_eq!(hash, "313233..35");
//! ```
extern crate failure;
use Error;
/// Prettify a byte slice.