(htmlString)
| 26 | } |
| 27 | |
| 28 | function createElementFromHTML(htmlString) { |
| 29 | var div = document.createElement("div"); |
| 30 | div.innerHTML = htmlString.trim(); |
| 31 | return div; |
| 32 | } |
| 33 | |
| 34 | const getMethodColor = (method) => { |
| 35 | const colors = { |
no outgoing calls
no test coverage detected