fuzzbuck

Results 5 issues of fuzzbuck

Instead of using a magic number, there is no realistic necessity for the limit to be ~2kb. I suggest that instead of a magic number, the server is able to...

Make the jitter map an optional feature, to support no_std crates (without getrandom support)

Add 'progress' to Options, which displays a visual progress bar of the obfuscation process in STDOUT ![image](https://github.com/MichaelXF/js-confuser/assets/54221024/6fe55c74-425b-4fd5-9ffd-b73c63bf2262) Example: ```js JsConfuser.obfuscate(contents, { target: "browser", progress: true, preset: "high" }) ```

**Is your feature request related to a problem? Please describe.** RenameLabels is a default transform applied every time, however there are cases where this could be unwanted. Such as scripts...

enhancement

**Describe the bug** ```rust use wasm_ast::parser; fn main() { /* first argument is the wasm file */ let wasm_file_path = std::env::args().nth(1).expect("No wasm file provided"); /* read the file */ let...