pub fn concat_with_slash<S1: AsRef<str>, S2: AsRef<str>>(
    s1: S1,
    s2: S2
) -> String
Expand description

Concatenate two strings with a slash.

extern crate slash_formatter;

assert_eq!("path/to", slash_formatter::concat_with_slash("path", "to/"));