blob: 336d027e3d51a5643e69c6818b6b89ca9eb57acf [file]
function Martian() {
this.nick = "";
this.dob = new Date();
this.hello = function () {
};
this.conf = {
a: 1, b: 2
};
}
exports.veryNaive = function () {
};
var o = {
jejda: {
ale: 1,
ale2: 1
},
pokus: new Date(),
obj: new Martian()
};
exports.mars = o;