(name)
| 543 | } |
| 544 | |
| 545 | function getFileExt(name) { |
| 546 | const dot = name.lastIndexOf("."); |
| 547 | return dot >= 0 ? name.slice(dot + 1).toLowerCase() : ""; |
| 548 | } |
| 549 | |
| 550 | async function fillFileSnippet(file, snippetEl) { |
| 551 | if (!snippetEl) return; |
no outgoing calls
no test coverage detected