Description:
We previously migrated several utility functions from plain JavaScript to C++ and compiled them to WebAssembly (WASM). However, some parts of the frontend still import and use the old JS utilities.
This issue aims to replace all remaining JS utility calls with the WASM implementations, ensuring a single source of truth for business logic and deleting the redundant /src/utils/ folder afterward.
Tasks:
- Identify files still importing functions from /src/utils/
- Replace those with corresponding WASM calls (you may see how it has been done in /src/utils/components/Equalizers.jsx as reference)
- Verify the behavior matches the previous implementation.
- Remove unused utility files and imports.
Expected Outcome:
- All logic uses the new WASM functions
- /src/utils/ folder is safely deleted