dechdev_rs 0.1.45

A Rust library by DECHDEV.
Documentation
#[cfg(test)]
mod tests {
    use dechdev_rs::utils::string::to_camel_case;
    use pretty_assertions::assert_eq;

    #[test]
    fn test_empty_string() {
        assert_eq!(to_camel_case("", true), "");
    }

    #[test]
    fn test_single_word() {
        assert_eq!(to_camel_case("hello", true), "hello");
    }

    #[test]
    fn test_snake_case() {
        assert_eq!(to_camel_case("hello world", true), "helloWorld");
    }
}