Skip to content

Instantly share code, notes, and snippets.

@passcod
Last active December 17, 2015 03:58
Show Gist options
  • Save passcod/5546903 to your computer and use it in GitHub Desktop.
Save passcod/5546903 to your computer and use it in GitHub Desktop.
>>> ''.tr
function (a, b) {
a = a || "aeioubcdfghjklmnpqrstvwxyz";
return this.replace(RegExp("([" + a + "])", "ig"), function (c,d,e) {
e = c.toLowerCase();
d = (b || "iouaenpqrstvwxyzbcdfghjklm")[a.indexOf(e)];
return c==e ? d : d.toUpperCase();
});
}
function(a,b){a=a||"aeioubcdfghjklmnpqrstvwxyz";return this.replace(RegExp("(["+a+"])","ig"),function(c,d,e){e=c.toLowerCase();d=(b||"iouaenpqrstvwxyzbcdfghjklm")[a.indexOf(e)];return c==e?d:d.toUpperCase();});}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment