We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import * as fs from 'fs'; import * as rosu from "rosu-pp-js"; const file_path = `/mnt/f/osu!/beatmaps/53.osu`; const bytes = fs.readFileSync(file_path); while (true) { let beatmap = new rosu.Beatmap(bytes); }
This MRE currently results in RAM usage steadily climbing up. This issue has most likely to do with rustwasm/wasm-bindgen#3917.
I believe the best "workaround" is to denote very clearly in the readme and documentation to call Beatmap.free manually.
Beatmap.free
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This MRE currently results in RAM usage steadily climbing up. This issue has most likely to do with rustwasm/wasm-bindgen#3917.
I believe the best "workaround" is to denote very clearly in the readme and documentation to call
Beatmap.free
manually.The text was updated successfully, but these errors were encountered: