We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4157bc6 commit 3efbae5Copy full SHA for 3efbae5
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