0.1.0 • Published 10 years ago

x-is-array v0.1.0

Weekly downloads
43,025
License
-
Repository
github
Last release
10 years ago

x-is-array

Simple array test

Example

var isArray = require("x-is-array")

isArray([])
// -> true

isArray("hello")
// -> false

isArray("")
// -> false

isArray(9)
// -> false

isArray(true)
// -> false

isArray(new Date())
// -> false

isArray({
// -> false

isArray(null)
// -> false

isArray(undefined)
// -> false

Installation

npm install x-is-array

Contributors

  • Matt-Esch

MIT Licenced