feat(utils): 新增isObject

This commit is contained in:
roymondchen 2023-08-04 15:59:18 +08:00
parent 5887977e45
commit 46f6aeaaf7

View File

@ -126,6 +126,8 @@ export const getUrlParam = (param: string, url?: string) => {
return '';
};
export const isObject = (obj: any) => Object.prototype.toString.call(obj) === '[object Object]';
export const isPop = (node: MComponent | null): boolean => Boolean(node?.type?.toLowerCase().endsWith('pop'));
export const isPage = (node?: MComponent | null): boolean => {