()
| 139 | const text = normalizePaste(plainText) |
| 140 | |
| 141 | const put = () => { |
| 142 | if (input.addPart?.({ type: "text", content: text, start: 0, end: 0 })) return true |
| 143 | input.focusEditor?.() |
| 144 | return input.addPart?.({ type: "text", content: text, start: 0, end: 0 }) ?? false |
| 145 | } |
| 146 | |
| 147 | if (pasteMode(text) === "manual") { |
| 148 | put() |
no outgoing calls
no test coverage detected