@noinline
(bin)
| 3 | // function, leading into incorrect results. |
| 4 | /** @noinline */ |
| 5 | function binaryDecode(bin) { |
| 6 | for (var i = 0, l = bin.length, o = new Uint8Array(l), c; i < l; ++i) { |
| 7 | c = bin.charCodeAt(i); |
| 8 | o[i] = ~c >> 8 & c; // Recover the null byte in a manner that is compatible with https://crbug.com/453961758 |
| 9 | } |
| 10 | return o; |
| 11 | } |
no outgoing calls
no test coverage detected