mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
Port str substring command (#388)
* Port str substring command * Fix issue signaled by cargo fmt
This commit is contained in:
committed by
GitHub
parent
3916ac4165
commit
b8f1fea7fe
@ -11,6 +11,7 @@ mod lpad;
|
||||
mod reverse;
|
||||
mod rpad;
|
||||
mod starts_with;
|
||||
mod substring;
|
||||
|
||||
pub use capitalize::SubCommand as StrCapitalize;
|
||||
pub use case::*;
|
||||
@ -25,3 +26,4 @@ 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;
|
||||
pub use substring::SubCommand as StrSubstring;
|
||||
|
Reference in New Issue
Block a user