UNPKG

react-a11y

Version:

Warns about potential accessibility issues with your React elements.

8 lines (6 loc) 202 B
// checks if a prop value is to be considered trueish export default function (props = {}, name = '') { return props[name] === true || props[name] === 'true' || props[name] === name; }