From ba1a1fc0413e0cd2776d0034948bc7a455b9f662 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Sat, 9 Apr 2022 19:57:19 +0200 Subject: [PATCH] chore: fix type --- src/helpers/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/utils.ts b/src/helpers/utils.ts index cd9a4b5c..c735aa65 100644 --- a/src/helpers/utils.ts +++ b/src/helpers/utils.ts @@ -15,7 +15,7 @@ export function isNil(value: any) { return value == null } -export function omitBy(obj: {}, check: (value: any) => Boolean): {} { +export function omitBy(obj: {}, check: (value: any) => boolean): {} { if (isNil(obj)) { return {} }