This repository was archived by the owner on Nov 14, 2025. It is now read-only.
Patch Changes
-
#336
2383f4d- refactor: improve code quality by addressing SonarQube code smellsImproved code readability and maintainability by addressing 7 code smell issues:
- Use
String#replaceAll()instead ofreplace()with global regex for better clarity - Convert
forEach()tofor...ofloop for improved performance and readability - Use
String.rawtemplate literal to avoid unnecessary escaping in regex patterns
These changes follow modern JavaScript/TypeScript best practices and reduce technical debt by 30 minutes. No functional changes or breaking changes introduced.
- Use