import { readRangeSync } from "https://dotland.deno.dev/std@0.110.0/io/util.ts";
Read a range of bytes synchronously from a file or other resource that is readable and seekable. The range start and end are inclusive of the bytes within that range.
import { assertEquals } from "../testing/asserts.ts";
import { readRangeSync } from "./util.ts";
// Read the first 10 bytes of a file
const file = Deno.openSync("example.txt", { read: true });
const bytes = readRangeSync(file, { start: 0, end: 9 });
assertEquals(bytes.length, 10);
Parameters
range: ByteRange