UNPKG

is-obj

Version:
5 lines (4 loc) 142 B
export default function isObject(value) { const type = typeof value; return value !== null && (type === 'object' || type === 'function'); }