nushell/crates/nu-cmd-extra/src/extra/strings/mod.rs
Michael Angerman 58f98a4260
Cratification: move some str case commands to nu-cmd-extra (#9926)
I am moving the following str case commands to nu-cmd-extra (as
discussed in the core team meeting the other day)

* camel-case
* kebab-case
* pascal-case
* screaming-snake-case
* snake-case
* title-case
2023-08-06 06:40:44 -07:00

4 lines
74 B
Rust

pub(crate) mod encode_decode;
pub(crate) mod format;
pub(crate) mod str_;