***WARNING: The clean_pdf function now returns the numerical code of the method used to clean the pdf along with the cleaned PDF itself. The change is very small, but WILL break your code if you don't change it.***
Example for the gulagcleaner_wasm package:
javascript
//Previous:
var cleaned_pdf= await clean_pdf(data,0);
//Current:
var cleaning_result = await clean_pdf(data,0);
var cleaned_pdf = cleaning_result.result
var method_code = cleaning_result.method
*NEW:*
* Added a method to clean StuDocu PDFs.
* Now the clean_pdf function also returns the method used to clean the PDF.
**Full Changelog**: https://github.com/YM162/gulagcleaner/compare/v0.5.2...v0.11.0