nushell/crates/nu-command/src/strings/str_/mod.rs
onthebridgetonowhere ef20b5f1ef
Port str capitalize (#317)
* Port str capitalize command

* Keep consistent naming for str commands

Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
2021-11-09 20:40:56 +13:00

8 lines
126 B
Rust

mod capitalize;
mod case;
mod collect;
pub use capitalize::SubCommand as StrCapitalize;
pub use case::*;
pub use collect::*;