mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
Port str reverse (#337)
Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
This commit is contained in:
committed by
GitHub
parent
be827e5628
commit
50cbd16ec7
@ -8,6 +8,7 @@ mod find_replace;
|
||||
mod index_of;
|
||||
mod length;
|
||||
mod lpad;
|
||||
mod reverse;
|
||||
mod rpad;
|
||||
|
||||
pub use capitalize::SubCommand as StrCapitalize;
|
||||
@ -20,4 +21,5 @@ pub use find_replace::SubCommand as StrFindReplace;
|
||||
pub use index_of::SubCommand as StrIndexOf;
|
||||
pub use length::SubCommand as StrLength;
|
||||
pub use lpad::SubCommand as StrLpad;
|
||||
pub use reverse::SubCommand as StrReverse;
|
||||
pub use rpad::SubCommand as StrRpad;
|
||||
|
Reference in New Issue
Block a user