Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Stefan de Vogelaere
2020-07-13 09:21:00 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7c47635f5986469b9351277f0984d4f57a62a597
7c47635f
1 parent
bfa73b7b
Add util extensions again in the lib + add missing function
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
lib/src/regex/get_utils_extensions.dart
lib/utils.dart
lib/src/regex/get_utils_extensions.dart
View file @
7c47635
...
...
@@ -31,6 +31,7 @@ extension GetStringUtils on String {
bool
get
isPalindrom
=>
GetUtils
.
isPalindrom
(
this
);
bool
get
isPassport
=>
GetUtils
.
isPassport
(
this
);
bool
get
isCurrency
=>
GetUtils
.
isCurrency
(
this
);
bool
isCpf
(
String
s
)
=>
GetUtils
.
isCpf
(
this
);
bool
isCaseInsensitiveContains
(
String
b
)
=>
GetUtils
.
isCaseInsensitiveContains
(
this
,
b
);
bool
isCaseInsensitiveContainsAny
(
String
b
)
=>
...
...
lib/utils.dart
View file @
7c47635
...
...
@@ -2,3 +2,4 @@ export 'src/context_extensions/extensions.dart';
export
'src/queue/get_queue.dart'
;
export
'src/platform/platform.dart'
;
export
'src/regex/get_utils.dart'
;
export
'src/regex/get_utils_extensions.dart'
;
...
...
Please
register
or
login
to post a comment