(length)
| 13712 | * @param {number} length The length of the array. |
| 13713 | */ |
| 13714 | var Uint8ArrayWriter = function(length) { |
| 13715 | this.data = new Uint8Array(length); |
| 13716 | this.index = 0; |
| 13717 | }; |
| 13718 | Uint8ArrayWriter.prototype = { |
| 13719 | /** |
| 13720 | * Append any content to the current array. |
nothing calls this directly
no outgoing calls
no test coverage detected