UNPKG

ans-ui

Version:

A vue-based UI components library for analysys

13 lines (10 loc) 202 B
/* * * 判断数据类型 * */ function isType (value) { let type = Object.prototype.toString.call(value) return type.match(/\[object (.*?)\]/)[1].toLowerCase() } export default isType