Keine Beschreibung
alejandro.alvarez5 70bb213259 articulo vor 2 Jahren
..
LICENSE articulo vor 2 Jahren
README.md articulo vor 2 Jahren
index.js articulo vor 2 Jahren
package.json articulo vor 2 Jahren
test.js articulo vor 2 Jahren

README.md

objectorarray

npm version downloads

Is the value an object or an array but not null or RegExp?

Install

  $ yarn add objectorarray

Usage

 import objectorarray from 'objectorarray'

True

All of the following return true:

  objectorarray({})
  objectorarray([])  
  objectorarray(Object.create({}))
  objectorarray(Object.create(Object.prototype))
  objectorarray(Object.create(null))
  objectorarray(new Foo)

False

All of the following return false:

  objectorarray()
  objectorarray(function () {})
  objectorarray(1)
  objectorarray(/foo/)
  objectorarray(undefined)
  objectorarray(null)

License

MIT