8 lines
162 B
Plaintext
8 lines
162 B
Plaintext
const isArray =
|
|
Array.isArray ||
|
|
function(arg) {
|
|
return Object.prototype.toString.call(arg) === '[object Array]';
|
|
};
|
|
|
|
export default isArray;
|