function getType(obj) { let type = typeof obj if (type != 'object') { return type } return Object.prototype.toString.call(obj).replace(/^[object (\S+)]1') }
function typeOf(obj) { return Object.prototype.toString.call(obj).slice(8, -1).toLowerCase() }