Checks whether a value is an object of any type.
isObject([ 0, 1 ]) // trueisObject(() => {}) // trueisObject(/^abc$/i) // trueisObject(null) // false Copy
isObject([ 0, 1 ]) // trueisObject(() => {}) // trueisObject(/^abc$/i) // trueisObject(null) // false
3.0.0-beta.1
Checks whether a value is an object of any type.