import { getDataType } from '../getDataType'; /** * 判断是否为 Object 类型函数 * @category Types * @param obj : 需要判断的数据 * @returns : 返回判断结果布尔值 */ export const isObject = (obj: any) => { return getDataType(obj) === '[object Object]'; };