( array, results )
| 4146 | } |
| 4147 | |
| 4148 | var makeArray = function( array, results ) { |
| 4149 | array = Array.prototype.slice.call( array, 0 ); |
| 4150 | |
| 4151 | if ( results ) { |
| 4152 | results.push.apply( results, array ); |
| 4153 | return results; |
| 4154 | } |
| 4155 | |
| 4156 | return array; |
| 4157 | }; |
| 4158 | |
| 4159 | // Perform a simple check to determine if the browser is capable of |
| 4160 | // converting a NodeList to an array using builtin methods. |
no outgoing calls
no test coverage detected