Last active
January 26, 2023 20:27
-
-
Save autovalue/242b481c231308c85dbe2c7cb95e0ae2 to your computer and use it in GitHub Desktop.
JsFuck Unfucker | UnJsFuck | JsFuck decoder | JsFuck deobfuscate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Based off https://codegolf.stackexchange.com/questions/28714/convert-jsfuck-to-normal-js | |
**/ | |
var UnJSFuck = { | |
decode: function(jsFuckCode){ | |
return /\n(.+)/.exec(eval(jsFuckCode.slice(0,-2)))[1]; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey