Skip to content

Instantly share code, notes, and snippets.

@ywh233
Created April 14, 2018 23:07
Show Gist options
  • Save ywh233/472986f835c7fe270ce8554819520c98 to your computer and use it in GitHub Desktop.
Save ywh233/472986f835c7fe270ce8554819520c98 to your computer and use it in GitHub Desktop.
function transpose(str, offset) {
let nstr = '';
for (var i = 0; i < str.length; i++) {
const cc = str.charCodeAt(i);
nstr += String.fromCharCode(cc + offset);
}
return nstr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment