( type )
| 4840 | |
| 4841 | // Returns a function to use in pseudos for buttons |
| 4842 | function createButtonPseudo( type ) { |
| 4843 | return function( elem ) { |
| 4844 | var name = elem.nodeName.toLowerCase(); |
| 4845 | return (name === "input" || name === "button") && elem.type === type; |
| 4846 | }; |
| 4847 | } |
| 4848 | |
| 4849 | /** |
| 4850 | * Utility function for retrieving the text value of an array of DOM nodes |
no outgoing calls
no test coverage detected
searching dependent graphs…