Newer
Older
HydrantApplet / miniprogram / miniprogram_npm / vant-weapp / picker-column / index.wxs
zhout on 4 Mar 2021 242 bytes first commit
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;
}