Port str length command (#330)

Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
This commit is contained in:
onthebridgetonowhere
2021-11-13 22:25:55 +01:00
committed by GitHub
parent 14a2918bba
commit 08d316f6a7
3 changed files with 115 additions and 0 deletions

View File

@ -6,6 +6,7 @@ mod downcase;
mod ends_with;
mod find_replace;
mod index_of;
mod length;
pub use capitalize::SubCommand as StrCapitalize;
pub use case::*;
@ -15,3 +16,4 @@ 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;
pub use length::SubCommand as StrLength;