(type, text)
| 493 | } |
| 494 | |
| 495 | function span(type, text) { |
| 496 | let sp = document.createElement("span") |
| 497 | sp.className = "sandbox-output-" + type |
| 498 | sp.appendChild(document.createTextNode(text)) |
| 499 | return sp |
| 500 | } |
| 501 | |
| 502 | function eltSize(elt) { |
| 503 | return elt.textContent.length |
no outgoing calls
no test coverage detected