wxapp/components/wxs/array.wxs
2024-08-03 19:57:17 +08:00

6 lines
112 B
XML

function isArray(array) {
return array && array.constructor === 'Array';
}
module.exports.isArray = isArray;