isObject
Basic usage
Pass in a value and get a boolean telling you if the value is an Object.
import { isObject } from 'radash'
isObject('hello') // => falseisObject(['hello']) // => falseisObject(null) // => falseisObject({ say: 'hello' }) // => true