We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 255df9c commit 2029699Copy full SHA for 2029699
src/util.js
@@ -187,6 +187,8 @@ function replacer (key) {
187
return encodeCache.cache(val, () => getCustomInstanceDetails(val))
188
} else if (typeof val.render === 'function') {
189
return encodeCache.cache(val, () => getCustomComponentDefinitionDetails(val))
190
+ } else if (val.__proto__ && val.__proto__.constructor && val.__proto__.constructor.name === 'VNode') {
191
+ return `[native VNode <${val.tag}>]`
192
}
193
} else if (Number.isNaN(val)) {
194
return NAN
0 commit comments