Remove redundant comment

This commit is contained in:
NightKev 2025-08-04 20:58:23 -07:00 committed by GitHub
parent 938a4cf451
commit 0d0f8e3be3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,7 +26,6 @@ function findColorPrefix(args: string[]): string {
for (const arg of args) {
const match = /color:\s*(.+?)(?:;|$)/g.exec(arg);
if (match === null) {
// no match
continue;
}