You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
In
detectConsoleLogs.ts
we have theconsoleLogRegex
variable. It's a RegEx literal that will keep growing.We can do something like the following to keep this RegEx more legible:
And then concat this into the RegEx literal. This possibly looks similar to this:
const consoleLogRegex = consoleLogsByLanguage.map(element => element).join('');
The text was updated successfully, but these errors were encountered: