UNPKG

balm-ui

Version:

A modular and customizable UI library based on Material Design and Vue 3

11 lines (8 loc) 199 B
const reTypeOf = /(?:^\[object\s(.*?)\]$)/; const getType = (any) => { return Object.prototype.toString .call(any) .replace(reTypeOf, '$1') .toLowerCase(); }; export default getType;