MCPcopy
hub / github.com/pythongosssss/ComfyUI-Custom-Scripts / seek

Method seek

web/js/workflowImage.js:234–240  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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
243class Tiff {

Callers 5

readExifMethod · 0.80
#readUserCommentMethod · 0.80
#readExifTagMethod · 0.80
readExifMethod · 0.80
#consumeAppSegmentMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected