mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-22 06:49:11 +00:00
10 lines
No EOL
233 B
Dart
10 lines
No EOL
233 B
Dart
import 'package:adguard_home_manager/constants/regexps.dart';
|
|
|
|
bool isIpAddress(String value) {
|
|
if (Regexps.ipv4Address.hasMatch(value) || Regexps.ipv6Address.hasMatch(value)) {
|
|
return true;
|
|
}
|
|
else {
|
|
return false;
|
|
}
|
|
} |