mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-22 09:23:34 +08:00
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
const code = `
|
|
console.log('hello world')
|
|
`
|
|
const options = {
|
|
disableConsoleOutput: true
|
|
}
|
|
|
|
const obfuscator = require('javascript-obfuscator')
|
|
|
|
function obfuscate(code, options) {
|
|
return obfuscator.obfuscate(code, options).getObfuscatedCode()
|
|
}
|
|
|
|
console.log(obfuscate(code, options)) |