* A boolean value indicating whether the reader has reached the end of the binary data.
()
| 41 | * A boolean value indicating whether the reader has reached the end of the binary data. |
| 42 | */ |
| 43 | get isEmpty(): boolean { |
| 44 | return this.offset + 1 >= this.view.byteLength; |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * The current offset in the binary data. |
nothing calls this directly
no outgoing calls
no test coverage detected