UNPKG

@tencentcloud/call-uikit-vue2

Version:

An Open-source Voice & Video Calling UI Component Based on Tencent Cloud Service.

16 lines (12 loc) 298 B
export function isEmpty(obj) { if (obj === null || obj === undefined) { return true; } if (typeof obj === 'string' && obj.trim().length === 0) { return true; } if (Array.isArray(obj) || typeof obj === 'object') { return Object.keys(obj).length === 0; } return false; }