( proto )
| 223 | } |
| 224 | |
| 225 | function createObject( proto ) { |
| 226 | var f; |
| 227 | |
| 228 | if ( Object.create ) { |
| 229 | return Object.create( proto ); |
| 230 | } else { |
| 231 | f = function() {}; |
| 232 | f.prototype = proto; |
| 233 | return new f(); |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | |
| 238 | /** |
no outgoing calls
no test coverage detected