pub fn rem_first_char(value: &str) -> String
Expand description

Removes the first character of a string.

§Example

use wagon_utils::rem_first_char;

let s = "123";
assert_eq!("23", rem_first_char(s));