You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
331 B
12 lines
331 B
7 years ago
|
export default function getDataOrAriaProps(props: any) {
|
||
|
return Object.keys(props).reduce((prev: any, key: string) => {
|
||
|
if (
|
||
|
(key.substr(0, 5) === 'data-' || key.substr(0, 5) === 'aria-' || key === 'role') &&
|
||
|
key.substr(0, 7) !== 'data-__'
|
||
|
) {
|
||
|
prev[key] = props[key];
|
||
|
}
|
||
|
return prev;
|
||
|
}, {});
|
||
|
}
|