array.wxs 172 Bytes edit raw blame history 1 2 3 4 5 function isArray(array) { return array && (array.constructor === 'Array' || (typeof Array !== 'undefined' && Array.isArray(array))); } module.exports.isArray = isArray;