(text)
| 348 | } |
| 349 | |
| 350 | function stripSessionMarkup(text) { |
| 351 | return String(text || '') |
| 352 | .replace(/<details>/gi, '') |
| 353 | .replace(/<\/details>/gi, '') |
| 354 | .replace(/<summary>.*?<\/summary>/gis, '') |
| 355 | .replace(/<sub>.*?<\/sub>/gis, '') |
| 356 | .replace(/^---$/gm, '') |
| 357 | .trim(); |
| 358 | } |
| 359 | |
| 360 | function extractCodeFences(text) { |
| 361 | const fences = []; |
no outgoing calls
no test coverage detected