Skip to main content
Module

std/encoding/mod.ts>readVarnum

Deno standard library
Go to Latest
function readVarnum
import { readVarnum } from "https://deno.land/std@0.38.0/encoding/mod.ts";

Reads a number from r, comsuming sizeof(o.dataType) bytes. Data-type defaults to int32.

Returns it as number, or throws Deno.errors.UnexpectedEof if not enough bytes can be read.

Parameters

optional
o: VarnumOptions = [UNSUPPORTED]

Returns

Promise<number>