1
0
mirror of https://gitee.com/vant-contrib/vant-weapp.git synced 2025-04-24 10:22:36 +08:00

9 lines
242 B
XML

function isObj(x) {
var type = typeof x;
return x !== null && (type === 'object' || type === 'function');
}
module.exports = function (option, valueKey) {
return isObj(option) && option[valueKey] != null ? option[valueKey] : option;
}