Skip to main content
Module

x/deno/js/io.ts>Seeker

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface Seeker
import { type Seeker } from "https://deno.land/x/deno@v0.1.12/js/io.ts";

Methods

seek(offset: number, whence: number): 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.