审查视图

wxcomponents/vant/dist/wxs/array.wxs 172 字节
1  
倪静楠 authored
1 2 3 4 5
function isArray(array) {
  return array && (array.constructor === 'Array' || (typeof Array !== 'undefined' && Array.isArray(array)));
}

module.exports.isArray = isArray;