()
| 50 | transform(node: Node, options: MarkdownSerializerOptions = {}): Content[] { |
| 51 | if (Text.isText(node)) return [{ type: 'text', value: node.text }] |
| 52 | const tChildren = () => node.children.map(child => this.transform(child, options)).flat() |
| 53 | if (Editor.isEditor(node)) return tChildren() |
| 54 | const { type = 'paragraph' } = node |
| 55 |
no outgoing calls
no test coverage detected
searching dependent graphs…