0%

getType

1
2
3
4
5
6
7
8
9
10
11
/**
* @param {object}
* @return {string}
*/

function getType(obj) {
return Object.prototype.toString
.call(obj)
.match(/\s[a-zA-Z]+/)[0]
.toLowerCase();
}