More fixes

This commit is contained in:
Matt Bierner
2024-10-02 17:22:33 -07:00
parent 489c180f25
commit f22a1167e4
32 changed files with 145 additions and 1337 deletions

View File

@@ -9,7 +9,6 @@ export function equals(one: any, other: any): boolean {
if (one === other) {
return true;
}
// eslint-disable-next-line @typescript-eslint/prefer-optional-chain
if (one === null || one === undefined || other === null || other === undefined) {
return false;
}