()
| 240 | let buffer = '' |
| 241 | |
| 242 | const flushBuffer = () => { |
| 243 | if (buffer.length > 0) { |
| 244 | nodes.push({ type: 'text', value: buffer }) |
| 245 | buffer = '' |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | let index = 0 |
| 250 | while (index < value.length) { |
no outgoing calls
no test coverage detected