( proto )
| 753 | } |
| 754 | |
| 755 | function createObject( proto ) { |
| 756 | var f; |
| 757 | |
| 758 | if ( Object.create ) { |
| 759 | return Object.create( proto ); |
| 760 | } else { |
| 761 | f = function() {}; |
| 762 | f.prototype = proto; |
| 763 | return new f(); |
| 764 | } |
| 765 | } |
| 766 | |
| 767 | |
| 768 | /** |
no outgoing calls
no test coverage detected