Pass through empty constructor names

This commit is contained in:
Kevin Sawicki 2016-07-06 09:18:12 -07:00
parent a1209b69b3
commit d67dfd09fd
3 changed files with 5 additions and 4 deletions

View file

@ -60,7 +60,7 @@ var wrapArgs = function (args, visited) {
ret = {
type: 'object',
name: (value.constructor && value.constructor.name) ? value.constructor.name : 'Object',
name: value.constructor != null ? value.constructor.name : 'Object',
members: []
}
for (prop in value) {