(n: Node)
| 98 | let { path } = options |
| 99 | let entry: NodeEntry<List> | undefined = undefined |
| 100 | const match = (n: Node): n is List => |
| 101 | Editor.isList(editor, n) && (!type || n.type === type) && n.key === key |
| 102 | while (true) { |
| 103 | const prev = Editor.previous<List>(editor, { |
| 104 | at: path, |
no outgoing calls
no test coverage detected
searching dependent graphs…