获得数据类型
ts
/**
* 获得数据类型
* @param {*} target
* @param {boolean} [lowerCase=true] 控制是否转为小写
* @returns {string}
*/
function getType(target: any, lowerCase = true) {
const t = Object.prototype.toString
.call(target)
.replace(/\[object (\w+)\]/, "$1");
return lowerCase ? t.toLowerCase() : t;
}