* Seeks to the specified position or by the number of bytes specified relative to the current offset * @param {number} pos * @param {boolean} relative
(pos, relative = true)
| 232 | * @param {boolean} relative |
| 233 | */ |
| 234 | seek(pos, relative = true) { |
| 235 | if (relative) { |
| 236 | this.offset += pos; |
| 237 | } else { |
| 238 | this.offset = pos; |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | class Tiff { |
no outgoing calls
no test coverage detected