* Moves the internal offset forward by the specified number. * * @param n - The number of positions to move the offset forward. * @return The new position of the internal offset after being moved.
(n: number)
| 58 | * @return The new position of the internal offset after being moved. |
| 59 | */ |
| 60 | skip(n: number) { |
| 61 | this.offset += n; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Skips the binary data until the specified byte value is found. |
nothing calls this directly
no outgoing calls
no test coverage detected