Skip to main content
Module

x/uuid/lib/lib.deno_runtime.d.ts>Deno.Seeker

Deprecated! UUID is part of the deno standard library
Latest
interface Deno.Seeker
import { type Deno } from "https://deno.land/x/uuid@v0.1.2/lib/lib.deno_runtime.d.ts";
const { Seeker } = Deno;

Methods

seek(offset: number, whence: SeekMode): Promise<void>

Seek sets the offset for the next read() or write() to offset, interpreted according to whence: SeekStart means relative to the start of the file, SeekCurrent means relative to the current offset, and SeekEnd means relative to the end. Seek returns the new offset relative to the start of the file and an error, if any.

Seeking to an offset before the start of the file is an error. Seeking to any positive offset is legal, but the behavior of subsequent I/O operations on the underlying object is implementation-dependent.