UNPKG

pure-conditions

Version:
6 lines (5 loc) 147 B
function isObject (value) { const type = typeof value return (type === 'function' || type === 'object') && !!value } module.exports = isObject