From the docs: > If customizer returns undefined, comparisons are handled by the method instead. ``` ts interface IsEqualCustomizer { (value: any, other: any, indexOrKey?: number | string): boolean; } ``` should be ``` ts interface IsEqualCustomizer { (value: any, other: any, indexOrKey?: number | string): boolean | void; } ```