Showing
2 changed files
with
2 additions
and
0 deletions
@@ -31,6 +31,7 @@ extension GetStringUtils on String { | @@ -31,6 +31,7 @@ extension GetStringUtils on String { | ||
31 | bool get isPalindrom => GetUtils.isPalindrom(this); | 31 | bool get isPalindrom => GetUtils.isPalindrom(this); |
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 isCaseInsensitiveContains(String b) => | 35 | bool isCaseInsensitiveContains(String b) => |
35 | GetUtils.isCaseInsensitiveContains(this, b); | 36 | GetUtils.isCaseInsensitiveContains(this, b); |
36 | bool isCaseInsensitiveContainsAny(String b) => | 37 | bool isCaseInsensitiveContainsAny(String b) => |
@@ -2,3 +2,4 @@ export 'src/context_extensions/extensions.dart'; | @@ -2,3 +2,4 @@ export 'src/context_extensions/extensions.dart'; | ||
2 | export 'src/queue/get_queue.dart'; | 2 | export 'src/queue/get_queue.dart'; |
3 | export 'src/platform/platform.dart'; | 3 | export 'src/platform/platform.dart'; |
4 | export 'src/regex/get_utils.dart'; | 4 | export 'src/regex/get_utils.dart'; |
5 | +export 'src/regex/get_utils_extensions.dart'; |
-
Please register or login to post a comment