rot13_converter 1.0.0 rot13_converter: ^1.0.0 copied to clipboard
ROT13 (rotate by 13 places) converter using dart:convert library.
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?
}