Files
MWClash/lib/common/string.dart

6 lines
122 B
Dart
Raw Normal View History

2024-04-30 23:38:49 +08:00
extension StringExtension on String {
bool get isUrl {
return RegExp(r'^(http|https|ftp)://').hasMatch(this);
2024-04-30 23:38:49 +08:00
}
}