UNPKG

@ark-ui/vue

Version:

A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.

12 lines (10 loc) 212 B
const cleanProps = (obj) => { const result = {}; for (const [key, value] of Object.entries(obj)) { if (value !== void 0) { result[key] = value; } } return result; }; export { cleanProps };