UNPKG

@darwish/utils-core

Version:

12 lines (11 loc) 249 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Check if the given object is an array. * @param obj any * @returns boolean */ function isArray(obj) { return Array.isArray(obj); } exports.default = isArray;