Port str downcase and str contains (#319)

* Port str contains command

* Add another test case / example for str contains

* Port str downcase to engine-q

Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
This commit is contained in:
onthebridgetonowhere
2021-11-09 21:16:53 +01:00
committed by GitHub
parent ef20b5f1ef
commit 0f516a0830
4 changed files with 356 additions and 0 deletions

View File

@ -1,7 +1,11 @@
mod capitalize;
mod case;
mod collect;
mod contains;
mod downcase;
pub use capitalize::SubCommand as StrCapitalize;
pub use case::*;
pub use collect::*;
pub use contains::SubCommand as StrContains;
pub use downcase::SubCommand as StrDowncase;