@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
19 lines (15 loc) • 462 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const createSplitProps = () => (props, keys) => keys.reduce(
(previousValue, currentValue) => {
const [target, source] = previousValue;
const key = currentValue;
if (source[key] !== void 0) {
target[key] = source[key];
}
delete source[key];
return [target, source];
},
[{}, { ...props }]
);
exports.createSplitProps = createSplitProps;