wxapp/components/wxs/array.wxs

6 lines
112 B
Plaintext
Raw Permalink Normal View History

2024-08-03 11:57:17 +00:00
function isArray(array) {
return array && array.constructor === 'Array';
}
module.exports.isArray = isArray;