rotrot
v1.0.0
Published
Rotate string back and forth
Downloads
4
Readme
rotrot
Rotate string back and forth
Installation
npm install rotrot
Usage
var rot = require('rotrot');
var string = 'Hey-hey';
// add 30 to all char codes
var rotated = rot(string, 30);
// rotate back char codes to get initial string
var initialString = rot(rotated, -30);
License
MIT