trans-case

Crates.iotrans-case
lib.rstrans-case
version0.1.0
sourcesrc
created_at2024-06-14 10:16:59.362736
updated_at2024-06-14 10:16:59.362736
descriptionTransform case.
homepage
repositoryhttps://github.com/mdmahikaishar/trans-case
max_upload_size
id1271830
size7,031
Md Mahi Kaishar (mdmahikaishar)

documentation

README

Trans Case

Rust

Transform case.

Get Strated

cargo add trans-case

Example

use trans_case::{TransCase, Case};

let sentence = TransCase::new("trans-case in rust");

println!("{}", sentence.case(Case::Upper)); // TRANS CASE IN RUST
println!("{}", sentence.case(Case::Title)); // Trans Case In Rust
println!("{}", sentence.case(Case::Camel)); // transCaseInRust

Contributing

Contributions are welcome! I would like you to contribute in this project.

Roadmap

This project is in its early stages, and there are many missing features that need implementation. Check the Issues section for a list of features, enhancements, and bug fixes that are planned.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Commit count: 1

cargo fmt