From aa89875b8a2f20e75f458b13c166360359651c46 Mon Sep 17 00:00:00 2001 From: wont-stream Date: Tue, 14 Jan 2025 21:40:09 -0500 Subject: [PATCH] Refactor rules text generation to simplify rule count calculation --- index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/index.ts b/index.ts index 9a64891..b3657bf 100644 --- a/index.ts +++ b/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: {