(n)
| 6 | |
| 7 | |
| 8 | function T(n) { |
| 9 | const ui8 = new Uint8Array(n); |
| 10 | Object.setPrototypeOf(ui8, T.prototype); |
| 11 | return ui8; |
| 12 | } |
| 13 | Object.setPrototypeOf(T.prototype, Buffer.prototype); |
| 14 | Object.setPrototypeOf(T, Buffer); |
| 15 |
no outgoing calls
no test coverage detected