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)
}
|