1
0
mirror of https://gitee.com/vant-contrib/vant-weapp.git synced 2025-04-25 02:58:27 +08:00
2020-08-27 10:09:42 +08:00

13 lines
243 B
XML

/* 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
};