mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
Port str startswith (#342)
Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
This commit is contained in:
committed by
GitHub
parent
5459d30a24
commit
6fbe02eb21
@ -10,6 +10,7 @@ mod length;
|
||||
mod lpad;
|
||||
mod reverse;
|
||||
mod rpad;
|
||||
mod starts_with;
|
||||
|
||||
pub use capitalize::SubCommand as StrCapitalize;
|
||||
pub use case::*;
|
||||
@ -23,3 +24,4 @@ pub use length::SubCommand as StrLength;
|
||||
pub use lpad::SubCommand as StrLpad;
|
||||
pub use reverse::SubCommand as StrReverse;
|
||||
pub use rpad::SubCommand as StrRpad;
|
||||
pub use starts_with::SubCommand as StrStartsWith;
|
||||
|
Reference in New Issue
Block a user