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