We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49bed6a commit c6229b1Copy full SHA for c6229b1
src/extensions/jwPointer/index.js
@@ -94,9 +94,13 @@ class PointerType {
94
if (!destroyed) {
95
let value
96
try {
97
- if (this.value === null) value = span("null")
98
- else if (this.value instanceof Pointer) value = span("(Pointer)")
99
- else this.value.toReporterContent ? this.value.toReporterContent() : span(this.value)
+ if (this.value === null) {
+ value = span("null")
+ } else if (this.value instanceof Pointer) {
100
+ value = span("(Pointer)")
101
+ } else {
102
+ value = this.value.toReporterContent ? this.value.toReporterContent() : span(this.value)
103
+ }
104
} catch (e) {
105
value = span("(Recursive)")
106
}
0 commit comments