Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
get data-*, aria-*, and role attributes
- Loading branch information
Showing
3 changed files
with
49 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
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; | ||
}, {}); | ||
} |