UNPKG

react-facebook-next

Version:

Facebook components like a Login button, Like, Share, Comments or Embedded Post

17 lines (14 loc) 346 B
export default function clearUndefinedProperties(obj) { if (!obj) { return obj; } const newObj = {}; Object.keys(obj).forEach(propertyName => { const value = obj[propertyName]; if (value !== undefined) { newObj[propertyName] = value; } }); return newObj; } //# sourceMappingURL=clearUndefinedProperties.js.map