| function Runner2() { | |
| this.nick2 = ""; | |
| this.dob2 = new Date(); | |
| this.hello2 = function () { | |
| }; | |
| this.conf2 = { | |
| a: 1, b: 2,b2:1 | |
| }; | |
| } | |
| Runner2.pokus2 = function () { | |
| }; | |
| var o = { | |
| pokus2: new Date(), | |
| obj2: new Runner2(), | |
| neco2 : 2, | |
| ox : {f1 : 2, f3:1} | |
| }; | |
| module.exports = o; | |