isArray.js 165 B

12345
  1. import { getType } from './getType.js';
  2. /** Returns whether the payload is an array */
  3. export function isArray(payload) {
  4. return getType(payload) === 'Array';
  5. }