UNPKG

pope-test-callkit2

Version:

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

12 lines (9 loc) 244 B
export function filterObject(obj) { const filteredObj = {}; for (const key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key) && obj[key] !== undefined) { filteredObj[key] = obj[key]; } } return filteredObj; }