ant-design/.dumi/pages/theme-editor/components/utils.tsx

5 lines
163 B
TypeScript
Raw Normal View History

/* eslint-disable import/prefer-default-export */
export function isObject(target: any) {
return Object.prototype.toString.call(target) === '[object Object]';
}