fix(isEqualWith): Add explicit return type

This commit is contained in:
Sojin Park 2024-10-03 17:09:07 +09:00
parent b7568bb45e
commit 458d0bf321

View File

@ -48,7 +48,7 @@ export function isEqualWith(
bParent?: any,
stack?: Map<any, any>
) => boolean | void = noop
) {
): boolean {
if (typeof areValuesEqual !== 'function') {
areValuesEqual = noop;
}