6 lines
112 B
Plaintext
Raw Normal View History

2021-01-12 18:04:14 +08:00
function isArray(array) {
return array && array.constructor === 'Array';
}
module.exports.isArray = isArray;