Chore: minor changes
Some checks are pending
Build / Build (push) Waiting to run
Build / Diff output (push) Blocked by required conditions
Build / Deploy to Cloudflare Pages (push) Blocked by required conditions
Build / Deploy to GitHub and GitLab (push) Blocked by required conditions

This commit is contained in:
SukkaW
2025-03-12 15:01:28 +08:00
parent 9dcd8559e3
commit cdc255a82a
2 changed files with 3 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ export function processLine(line: string): string | null {
// # Comment
return null;
}
if (trimmed.charCodeAt(2) === 35 /** # */ && trimmed.charCodeAt(3) === 35) {
if (trimmed.charCodeAt(2) === 35 /** # */ && trimmed.charCodeAt(3) === 35 /** # */) {
// ################## EOF ##################
return null;
}