blob: 249154827ad6c000f814585eb8ba79c6861d7478 [file]
function Alien() {
this.nick = "";
this.dob = new Date();
this.hello = function () {
};
this.conf = {
a: 1, b: 2
};
}
exports.naive = function () {
};
exports.myobj = {
jejda: {
ale: 1,
ale2: 1
},
pokus: new Date(),
obj: new Alien()
};