mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
5644c63219
* feat: add Theme Editor theme upload * verision 2 * 移除lodash、同步当前Config * remove export,add into devDependencies,add tool link
5 lines
163 B
TypeScript
5 lines
163 B
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
export function isObject(target: any) {
|
|
return Object.prototype.toString.call(target) === '[object Object]';
|
|
}
|