Fix all sources to comply with eslint rules introduced in 2.0.0 (no logic changes).

This commit is contained in:
2026-01-09 19:19:15 -06:00
parent 8b0acc6f40
commit 642078e728
8 changed files with 131 additions and 131 deletions
+3 -3
View File
@@ -2,11 +2,11 @@ export function omit(
obj: Record<string, unknown>,
keys: string[],
): Record<string, unknown> {
const result: Record<string, unknown> = {};
const result: Record<string, unknown> = {}
for (const key in obj) {
if (!keys.includes(key)) {
result[key] = obj[key];
result[key] = obj[key]
}
}
return result;
return result
}