8 lines
173 B
Dart
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()}';
|
|
});
|
|
}
|