Determine if a value is a plain object
Pass in a value and get a boolean telling you if the value is a plain object.
import * as _ from 'radashi' _.isPlainObject({}) // => true_.isPlainObject(Object.create(null)) // => true _.isPlainObject([]) // => false_.isPlainObject(null) // => false_.isPlainObject(new Date()) // => false