(s, len)
| 64 | return s; |
| 65 | } |
| 66 | function padp(s, len) { |
| 67 | s = s.toString(); |
| 68 | var i = s.indexOf("."); |
| 69 | if (i == -1) i = s.length; |
| 70 | while (i++ < len) s = " " + s; |
| 71 | return s; |
| 72 | } |
| 73 | |
| 74 | // patch: WebAssembly.instantiate (async) |
| 75 | let orig_instantiate = WebAssembly.instantiate; |
no test coverage detected