UNPKG

@antv/util

Version:

<h1 align="center">@antv/util</h1>

11 lines (8 loc) 197 B
const toString = {}.toString; const getType = function (value: any): string { return toString .call(value) .replace(/^\[object /, '') .replace(/]$/, ''); }; export default getType;