Port str startswith (#342)

Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
This commit is contained in:
onthebridgetonowhere
2021-11-16 00:16:56 +01:00
committed by GitHub
parent 5459d30a24
commit 6fbe02eb21
3 changed files with 147 additions and 0 deletions

View File

@ -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;