Untitled.js *
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
* GitHub: https://github.com/MichaelXF/js-confuser
* NPM: https://www.npmjs.com/package/js-confuser
*
* Welcome to Js Confuser!
*
* You can obfuscate the code with the top left button 'Obfuscate'.
*
* You can customize the obfuscator from the side-panel.
* (See all options under 'Create Custom Preset')
*
* Version: 2.0.0
*
* Happy Hacking!
*/
function greet(name) {
var output = 'Hello ' + name + '!';
console.log(output);
}
greet('Internet User');