( array, results )
| 4759 | } |
| 4760 | |
| 4761 | var makeArray = function( array, results ) { |
| 4762 | array = Array.prototype.slice.call( array, 0 ); |
| 4763 | |
| 4764 | if ( results ) { |
| 4765 | results.push.apply( results, array ); |
| 4766 | return results; |
| 4767 | } |
| 4768 | |
| 4769 | return array; |
| 4770 | }; |
| 4771 | |
| 4772 | // Perform a simple check to determine if the browser is capable of |
| 4773 | // converting a NodeList to an array using builtin methods. |
no outgoing calls
no test coverage detected
searching dependent graphs…