1.1.1 • Published 8 years ago

@f/is-array v1.1.1

Weekly downloads
808
License
MIT
Repository
github
Last release
8 years ago

is-array

Build status Git tag NPM version Code style

Functional version of Array.isArray

Installation

$ npm install @f/is-array

Usage

var isArray = require('@f/is-array')

isArray([]) === true
isArray({}) === false

API

isArray(val)

  • val - An arbitrary value that may or may not be an array.

Returns: A boolean value indicating whether or not val is an array.

License

MIT