mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 15:49:10 +08:00
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]';
|
||
|
}
|