deguodaigou/utils/dist/wxs/array.wxs

6 lines
117 B
Plaintext
Raw Normal View History

2019-12-23 14:13:27 +08:00
function isArray(array) {
return array && array.constructor === 'Array';
}
module.exports.isArray = isArray;