4 lines
114 B
Plaintext
4 lines
114 B
Plaintext
![]() |
function isArray(array) {
|
||
|
return (array && array.constructor === 'Array')
|
||
|
};
|
||
|
module.exports.isArray = isArray;
|