NPM Package Docs
These are the docs for the NPM package
To get started, firstly install the package,
npm i aztupapi
Here's an example to get you started,
const { obfuscate } = require("aztupapi")
let options = {
"AddMemes": false,
"PreserveLineInfo": false,
"NoControlFlow": true,
"EncryptStrings": false,
"EncryptImportantStrings": false,
"NoBytecodeCompress": false,
"Uglify": false,
}
let script = obfuscate("print('hi')",options)
.then(ret => {
console.log(ret.script)
})
Last updated
Was this helpful?