Port str capitalize (#317)

* Port str capitalize command

* Keep consistent naming for str commands

Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
This commit is contained in:
onthebridgetonowhere
2021-11-09 08:40:56 +01:00
committed by GitHub
parent e1468c0440
commit ef20b5f1ef
3 changed files with 145 additions and 0 deletions

View File

@ -1,5 +1,7 @@
mod capitalize;
mod case;
mod collect;
pub use capitalize::SubCommand as StrCapitalize;
pub use case::*;
pub use collect::*;