feat(facade): toUpperCase and toLowerCase

This commit is contained in:
gdi2290
2015-05-14 09:17:44 -07:00
committed by Victor Berchet
parent c47902a471
commit 557d54b3de
3 changed files with 36 additions and 3 deletions

View File

@ -64,6 +64,14 @@ class StringWrapper {
return s.replaceAll(from, replace);
}
static String toUpperCase(String s) {
return s.toUpperCase();
}
static String toLowerCase(String s) {
return s.toLowerCase();
}
static startsWith(String s, String start) {
return s.startsWith(start);
}