From 458d0bf32145a9754708a367356c31f88bc0105c Mon Sep 17 00:00:00 2001 From: Sojin Park Date: Thu, 3 Oct 2024 17:09:07 +0900 Subject: [PATCH] fix(isEqualWith): Add explicit return type --- src/compat/predicate/isEqualWith.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compat/predicate/isEqualWith.ts b/src/compat/predicate/isEqualWith.ts index 34633dce..75df3bec 100644 --- a/src/compat/predicate/isEqualWith.ts +++ b/src/compat/predicate/isEqualWith.ts @@ -48,7 +48,7 @@ export function isEqualWith( bParent?: any, stack?: Map ) => boolean | void = noop -) { +): boolean { if (typeof areValuesEqual !== 'function') { areValuesEqual = noop; }