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

@ -4,7 +4,7 @@ foo.baz = false
module.exports = {
foo: foo,
bar: 1234,
baz: function () {
return 'hello'
getConstructorName: function (value) {
return value.constructor.name
}
}