2 lines
81 B
Dart
2 lines
81 B
Dart
|
|
String reverse(String s) => new String.fromCharCodes(s.runes.toList().reversed);
|