refactor: remove 3 orphaned files and prefix unused parameter

This commit is contained in:
YeonGyu-Kim
2026-02-17 14:09:12 +09:00
parent 9acdd6b85d
commit 462e2ec2b0
4 changed files with 1 additions and 211 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { HASH_DICT } from "./constants"
export function computeLineHash(lineNumber: number, content: string): string {
export function computeLineHash(_lineNumber: number, content: string): string {
const stripped = content.replace(/\s+/g, "")
const hash = Bun.hash.xxHash32(stripped)
const index = hash % 256