(entry, options)
| 64 | .overrideEditor(({ editor, tf: { normalizeNode } }) => ({ |
| 65 | transforms: { |
| 66 | normalizeNode(entry, options) { |
| 67 | if (isDefined(entry[0]._memo)) { |
| 68 | editor.tf.unsetNodes('_memo', { at: entry[1] }); |
| 69 | |
| 70 | return; |
| 71 | } |
| 72 | |
| 73 | normalizeNode(entry, options); |
| 74 | }, |
| 75 | }, |
| 76 | })); |
nothing calls this directly
no test coverage detected
searching dependent graphs…