UNPKG

181 BPlain TextView Raw
1const toString = {}.toString;
2
3const getType = function(value: any): string {
4 return toString.call(value).replace(/^\[object /, '').replace(/]$/, '');
5};
6
7export default getType;