( proto )
| 215 | } |
| 216 | |
| 217 | function createObject( proto ) { |
| 218 | var f; |
| 219 | |
| 220 | if ( Object.create ) { |
| 221 | return Object.create( proto ); |
| 222 | } else { |
| 223 | f = function() {}; |
| 224 | f.prototype = proto; |
| 225 | return new f(); |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | |
| 230 | /** |
no outgoing calls
no test coverage detected