4 lines
114 B
Plaintext
Raw Normal View History

2020-06-09 16:17:23 +08:00
function isArray(array) {
return (array && array.constructor === 'Array')
};
module.exports.isArray = isArray;