Skip to content

isArray

Determine if a value is an Array

42 bytes

Usage

Pass in a value and get a boolean telling you if the value is an Array.

import * as _ from 'radashi'
_.isArray('hello') // => false
_.isArray(['hello']) // => true