mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
Port str downcase and str contains (#319)
* Port str contains command * Add another test case / example for str contains * Port str downcase to engine-q Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
This commit is contained in:
committed by
GitHub
parent
ef20b5f1ef
commit
0f516a0830
@ -1,7 +1,11 @@
|
||||
mod capitalize;
|
||||
mod case;
|
||||
mod collect;
|
||||
mod contains;
|
||||
mod downcase;
|
||||
|
||||
pub use capitalize::SubCommand as StrCapitalize;
|
||||
pub use case::*;
|
||||
pub use collect::*;
|
||||
pub use contains::SubCommand as StrContains;
|
||||
pub use downcase::SubCommand as StrDowncase;
|
||||
|
Reference in New Issue
Block a user