* 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)
| 65 | * @return The new position of the internal offset after being moved. |
| 66 | */ |
| 67 | skip(n: number) { |
| 68 | this.offset += n; |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Skips the binary data until the specified byte value is found. |
no outgoing calls
no test coverage detected