overfast_api/lib/utils/utils.dart
2024-05-07 00:14:45 +02:00

8 lines
173 B
Dart

export './get.dart';
String toKebabCase(String text) {
return text.replaceAllMapped(RegExp(r'([A-Z])'), (match) {
return '-${match.group(1)?.toLowerCase()}';
});
}