mirror of
https://github.com/nushell/nushell.git
synced 2025-07-01 15:11:52 +02:00
Port str indexof (#327)
* Port str indexof * Fix clippy warning Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
This commit is contained in:
committed by
GitHub
parent
568e566adf
commit
e756a9ea04
@ -5,6 +5,7 @@ mod contains;
|
||||
mod downcase;
|
||||
mod ends_with;
|
||||
mod find_replace;
|
||||
mod index_of;
|
||||
|
||||
pub use capitalize::SubCommand as StrCapitalize;
|
||||
pub use case::*;
|
||||
@ -13,3 +14,4 @@ pub use contains::SubCommand as StrContains;
|
||||
pub use downcase::SubCommand as StrDowncase;
|
||||
pub use ends_with::SubCommand as StrEndswith;
|
||||
pub use find_replace::SubCommand as StrFindReplace;
|
||||
pub use index_of::SubCommand as StrIndexOf;
|
||||
|
Reference in New Issue
Block a user