UNPKG

@antv/util

Version:

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

6 lines (3 loc) 159 B
const toString = {}.toString; const isType = (value: any, type: string): boolean => toString.call(value) === '[object ' + type + ']'; export default isType;