(text, label = '')
| 418 | } |
| 419 | |
| 420 | function makeTextSection(text, label = '') { |
| 421 | return { type: 'text', label, text: String(text || '').trim() }; |
| 422 | } |
| 423 | |
| 424 | function makeCodeSection(text, language = '', label = '') { |
| 425 | return { |
no outgoing calls
no test coverage detected