mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
Port str upcase (#404)
* Port str upcase * Switch to to_uppercase to support more characters than only ASCII
This commit is contained in:
committed by
GitHub
parent
c5297d2b64
commit
bf82417d52
@ -13,6 +13,7 @@ mod rpad;
|
||||
mod starts_with;
|
||||
mod substring;
|
||||
mod trim;
|
||||
mod upcase;
|
||||
|
||||
pub use capitalize::SubCommand as StrCapitalize;
|
||||
pub use case::*;
|
||||
@ -29,3 +30,4 @@ pub use rpad::SubCommand as StrRpad;
|
||||
pub use starts_with::SubCommand as StrStartsWith;
|
||||
pub use substring::SubCommand as StrSubstring;
|
||||
pub use trim::Trim as StrTrim;
|
||||
pub use upcase::SubCommand as StrUpcase;
|
||||
|
Reference in New Issue
Block a user