Emmanuel b7eccee437 Navbar | před 5 roky | |
---|---|---|
.. | ||
LICENSE | před 5 roky | |
README.md | před 5 roky | |
index.js | před 5 roky | |
package.json | před 5 roky | |
test.js | před 5 roky | |
yarn.lock | před 5 roky |
Is the value an object or an array but not null or RegExp?
$ yarn add objectorarray
import objectorarray from 'objectorarray'
All of the following return true:
objectorarray({})
objectorarray([])
objectorarray(Object.create({}))
objectorarray(Object.create(Object.prototype))
objectorarray(Object.create(null))
objectorarray(new Foo)
All of the following return false:
objectorarray()
objectorarray(function () {})
objectorarray(1)
objectorarray(/foo/)
objectorarray(undefined)
objectorarray(null)
MIT