(element, name)
| 2617 | }); |
| 2618 | |
| 2619 | function getBooleanAttrName(element, name) { |
| 2620 | // check dom last since we will most likely fail on name |
| 2621 | var booleanAttr = BOOLEAN_ATTR[name.toLowerCase()]; |
| 2622 | |
| 2623 | // booleanAttr is here twice to minimize DOM access |
| 2624 | return booleanAttr && BOOLEAN_ELEMENTS[element.nodeName] && booleanAttr; |
| 2625 | } |
| 2626 | |
| 2627 | forEach({ |
| 2628 | data: jqLiteData, |
no outgoing calls
no test coverage detected