Skip to content

isArray

Basic usage

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

import { isArray } from 'radash'
isArray('hello') // => false
isArray(['hello']) // => true