All files / src/utils is-object.ts

100% Statements 2/2
100% Branches 3/3
100% Functions 1/1
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5  1x 9x    
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export function isObject(value: unknown): value is Exclude<object, null | Array<any>> {
  return value !== null && typeof value === 'object' && !Array.isArray(value)
}