UNPKG

@replyke/ui-core

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

15 lines 434 B
// Custom merge function export const safeMergeStyleProps = (...objects) => { return objects.reduce((acc, obj) => { if (obj) { Object.keys(obj).forEach((key) => { const value = obj[key]; if (value !== undefined) { acc[key] = value; } }); } return acc; }, {}); }; //# sourceMappingURL=safeMergeStyleProps.js.map