Skip to content

Instantly share code, notes, and snippets.

@ljepson
Created May 6, 2013 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ljepson/5525455 to your computer and use it in GitHub Desktop.
Save ljepson/5525455 to your computer and use it in GitHub Desktop.
function deobfuscate(convert) {
var code;
var convert_list = convert.split(/,/);
for(var i = 0; i < convert_list.length; i++) {
var char = String.fromCharCode(convert_list[i]);
code = code ? code + char : char;
}
console.log(code);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment