We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cad637 commit a6dfcb2Copy full SHA for a6dfcb2
2 files changed
lib/node/node.ts
@@ -436,6 +436,14 @@ export abstract class Node {
436
return JSON.stringify([structuredClone(this._data), this._knownDavService.toString()])
437
}
438
439
+ /**
440
+ * String representation of the node
441
+ */
442
+ toString(): string {
443
+ const constructorData: NodeConstructorData = [this._data, this._knownDavService]
444
+ return JSON.stringify(constructorData)
445
+ }
446
+
447
448
449
/**
0 commit comments