Showing
1 changed file
with
1 additions
and
0 deletions
| @@ -32,6 +32,7 @@ extension GetStringUtils on String { | @@ -32,6 +32,7 @@ extension GetStringUtils on String { | ||
| 32 | bool get isPassport => GetUtils.isPassport(this); | 32 | bool get isPassport => GetUtils.isPassport(this); | 
| 33 | bool get isCurrency => GetUtils.isCurrency(this); | 33 | bool get isCurrency => GetUtils.isCurrency(this); | 
| 34 | bool isCpf(String s) => GetUtils.isCpf(this); | 34 | bool isCpf(String s) => GetUtils.isCpf(this); | 
| 35 | + bool isCnpj(String s) => GetUtils.isCpf(this); | ||
| 35 | bool isCaseInsensitiveContains(String b) => | 36 | bool isCaseInsensitiveContains(String b) => | 
| 36 | GetUtils.isCaseInsensitiveContains(this, b); | 37 | GetUtils.isCaseInsensitiveContains(this, b); | 
| 37 | bool isCaseInsensitiveContainsAny(String b) => | 38 | bool isCaseInsensitiveContainsAny(String b) => | 
- 
Please register or login to post a comment