✨
Aztup API Docs
  • Aztupbrew API Docs
  • NPM Package Docs
Powered by GitBook
On this page

Was this helpful?

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)
})
PreviousAztupbrew API Docs

Last updated 4 years ago

Was this helpful?