diff --git a/src/helpers/utils.ts b/src/helpers/utils.ts index cd9a4b5c8..c735aa658 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 {} }