Newer
Older
smart_construction / miniprogram / miniprogram_npm / @vant / weapp / wxs / array.wxs
zhout on 27 May 2020 112 bytes Initial Commit
function isArray(array) {
  return array && array.constructor === 'Array';
}

module.exports.isArray = isArray;