UNPKG

@aitoralejandro/amanda

Version:

Utilities collection library

7 lines (5 loc) 196 B
import { isArray } from './isArray'; import { isNull } from './isNull'; export function isObject(value: any): boolean { return typeof value === 'object' && !isArray(value) && !isNull(value); }