util-ex
Version:
Browser-friendly enhanced util fully compatible with standard node.js
13 lines (11 loc) • 380 B
JavaScript
const toString = Object.prototype.toString;
/**
* Determines whether a given value is an Array.
*
* @param {*} obj - The value to be checked.
* @returns {boolean} `true` if the value is an Array, `false` otherwise.
*/
export const isArray = Array.isArray ? Array.isArray : function isArray(obj) {
return toString.call(obj) === "[object Array]";
};
export default isArray;