Skip to main content
Module

x/frugal/dep/std/io.ts>readRangeSync

A frugal web framework
Latest
function readRangeSync
import { readRangeSync } from "https://deno.land/x/frugal@0.9.6/dep/std/io.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 "https://deno.land/std@0.224.0/testing/asserts.ts";
import { readRangeSync } from "https://deno.land/std@0.224.0/io/read_range.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);

Returns

Uint8Array