Refactor rules text generation to simplify rule count calculation
This commit is contained in:
parent
39fefd04e0
commit
aa89875b8a
1 changed files with 1 additions and 3 deletions
4
index.ts
4
index.ts
|
@ -39,9 +39,7 @@ Bun.serve({
|
|||
|
||||
rules = Array.from(new Set(rules));
|
||||
|
||||
const ruleCount = originalRuleCount - rules.length;
|
||||
|
||||
const rulesText = makeComment(originalRuleCount, ruleCount) + rules.join('\n');
|
||||
const rulesText = makeComment(originalRuleCount, originalRuleCount - rules.length) + rules.join('\n');
|
||||
|
||||
return new Response(rulesText, {
|
||||
headers: {
|
||||
|
|
Loading…
Add table
Reference in a new issue