Files

6 lines
112 B
Plaintext
Raw Permalink Normal View History

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