Skip to main content
Module

x/aleph/deps.ts>bufio

The Full-stack Framework in Deno.
Very Popular
Go to Latest
namespace bufio
import { bufio } from "https://deno.land/x/aleph@v0.3.0-alpha.7/deps.ts";

Classes

BufReader implements buffering for a Reader object.

BufWriter implements buffering for an deno.Writer object. If an error occurs writing to a Writer, no more data will be accepted and all subsequent writes, and flush(), will return the error. After all data has been written, the client should call the flush() method to guarantee all data has been forwarded to the underlying deno.Writer.

BufWriterSync implements buffering for a deno.WriterSync object. If an error occurs writing to a WriterSync, no more data will be accepted and all subsequent writes, and flush(), will return the error. After all data has been written, the client should call the flush() method to guarantee all data has been forwarded to the underlying deno.WriterSync.

Functions

Read delimited bytes from a Reader.

Read strings line-by-line from a Reader.

Read delimited strings from a Reader.

Interfaces

Result type returned by of BufReader.readLine().