Skip to content

indentjs/objectorarray

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 20, 2020
debc681 · Feb 20, 2020

History

8 Commits
Dec 6, 2017
Dec 6, 2017
Dec 6, 2017
Dec 30, 2017
Feb 20, 2020
Dec 30, 2017
Dec 30, 2017

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published