index.wxs 243 Bytes
Newer Older
程默 committed
1 2 3 4 5 6 7 8 9 10 11 12
/* eslint-disable */
function isMulti(options) {
  if (options == null || options[0] == null) {
    return false;
  }

  return "Array" === options.constructor && "Array" === options[0].constructor;
}

module.exports = {
  isMulti: isMulti
};