dalborgo

Results 2 issues of dalborgo

There is a typo error in the documentation code: ``` res.csv([ {"name": "Sam", "age": 1}, {"name": "Mary": "age": 2} ], true) ``` "Mary": "age" - > "Mary", "age"

Is it possible obtain something like that? ``` const userSchema= lounge.schema({ name: String, father: User // type of father is User itself }) const User= lounge.model('User', userSchema) ```