6 lines
172 B
Plaintext
6 lines
172 B
Plaintext
|
function isArray(array) {
|
||
|
return array && (array.constructor === 'Array' || (typeof Array !== 'undefined' && Array.isArray(array)));
|
||
|
}
|
||
|
|
||
|
module.exports.isArray = isArray;
|