@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
16 lines (14 loc) • 371 B
JavaScript
'use client';
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 }]
);
export { createSplitProps };