(msg)
| 4 | } |
| 5 | |
| 6 | function debug_log(msg) { |
| 7 | let textNode = document.createTextNode(msg); |
| 8 | let node = document.createElement("p").appendChild(textNode); |
| 9 | |
| 10 | document.body.appendChild(node); |
| 11 | document.body.appendChild(document.createElement("br")); |
| 12 | } |
| 13 | |
| 14 | // The following functions are taken from https://github.com/saelo/jscpwn/: |
| 15 | // hex, hexlify, unhexlify, hexdump |
no outgoing calls
no test coverage detected