deguodaigou/utils/dist/wxs/array.wxs

6 lines
112 B
Plaintext
Raw Normal View History

2019-12-14 01:20:48 +00:00
function isArray(array) {
return array && array.constructor === 'Array';
}
module.exports.isArray = isArray;