Last updated:
0 purchases
rot13 converter
rot13_converter #
ROT13 (rotate by 13 places) converter using dart:convert library.
Usage #
import 'package:rot13_converter/rot13_converter.dart';
void main() {
String plain = 'Why did the chicken cross the road?';
String rot13 = ROT13.convert(plain);
print(rot13); // Jul qvq gur puvpxra pebff gur ebnq?
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.