Here you can find the source of rot13()
//= require jquery //= require jquery.turbolinks //= require jquery_ujs //= require jquery_rotate //= require hero_remark //= require turbolinks String.prototype.rot13 = function(){ return this.replace(/[a-zA-Z]/g, function(c){ return String.fromCharCode((c <= "Z" ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c - 26); });// w w w .j a v a 2s . co m };
String.prototype.rot13 = function(){ return this.replace(/[a-zA-Z]/g, function(c){ return String.fromCharCode((c <= "Z" ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c - 26); }); };
var mail = "asdf@asdf.pbz" String.prototype.rot13 = function(){ return this.replace(/[a-zA-Z]/g, function(c){ return String.fromCharCode((c <= "Z" ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c - 26); }); };
String.prototype.rot13 = function () { return this.replace(/[a-zA-Z]/g, function (c) { return String.fromCharCode(((c <= 'Z' ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c - 26)); }); }; var includeEmailLink = function () { var anchor = document.getElementById('hello'); var href = anchor.getAttribute('href'); return anchor.setAttribute('href', href.rot13()); ...
String.prototype.rot13 = function(){ return this.replace(/[a-zA-Z]/g, function(c){ return String.fromCharCode((c <= "Z" ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c - 26); }); };
String.prototype.rot13 = function(s) return (s ? s : this).split('').map(function(_) if (!_.match(/[A-za-z]/)) return _; c = Math.floor(_.charCodeAt(0) / 97); k = (_.toLowerCase().charCodeAt(0) - 83) % 26 || 26; return String.fromCharCode(k + ((c == 0) ? 64 : 96)); }).join(''); ...
function rot13(str) { var arr = []; for (var i = 0; i < str.length; i++) { if (str.charCodeAt(i) < 65 || str.charCodeAt(i) > 90) { arr.push(str.charAt(i)); } else if (str.charCodeAt(i) > 77) { arr.push(String.fromCharCode(str.charCodeAt(i) - 13)); } else { arr.push(String.fromCharCode(str.charCodeAt(i) + 13)); ...