doersino / doersino

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🏡 To find out more about my projects and me-as-a-person, go and visit my website at noahdoersing.com.

📫 Want to get in touch? Feel free to drop me an email to the address that the following JavaScript snippet evaluates to.

((crypt) => {
    const rot13 = c => {
        c = c.codePointAt(0);
        let d = c + 13;
        if (d > (c <= 90 ? 90 : 122)) {
            d -= 26;
        }
        return String.fromCodePoint(d);
    }
    const backwards = s => s.split("").reverse().join("");
    return backwards(crypt.replace(/[a-z]/gi, rot13));
})("zbp.tavferbqunba@vu");

About