Showing
1 changed file
with
1 additions
and
1 deletions
@@ -32,7 +32,7 @@ extension GetStringUtils on String { | @@ -32,7 +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 isCnpj(String s) => GetUtils.isCnpj(this); |
36 | bool isCaseInsensitiveContains(String b) => | 36 | bool isCaseInsensitiveContains(String b) => |
37 | GetUtils.isCaseInsensitiveContains(this, b); | 37 | GetUtils.isCaseInsensitiveContains(this, b); |
38 | bool isCaseInsensitiveContainsAny(String b) => | 38 | bool isCaseInsensitiveContainsAny(String b) => |
-
Please register or login to post a comment