Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/io/bufio.ts>BufReader#readByte

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
method BufReader.prototype.readByte
import { BufReader } from "https://deno.land/std@v0.35.0/io/bufio.ts";

Returns the next byte [0, 255] or EOF.

Returns

Promise<number | Deno.EOF>