UNPKG

zent

Version:

一套前端设计语言和基于React的实现

6 lines (4 loc) 157 B
const toString = Object.prototype.toString; export default function isObject(value?: any): boolean { return toString.call(value) === '[object Object]'; }