refactor: remove 3 orphaned files and prefix unused parameter
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user