Check if a value can be assigned properties (objects and functions)
npm install is-object-like> Check if a value can be assigned properties (objects and functions)
```
$ npm install --save is-object-like
`js`
var isObjectLike = require('is-object-like')
isObjectLike({}) // true
isObjectLike(function () {}) // true
isObjectLike(null) // false
#### isObjectLike(value) -> boolean
##### value
Required
Type: any`
The value to type check.
MIT © Ben Drucker