Skip to main content
Module

std/io/writers.ts>StringWriter

Deno standard library
Go to Latest
class StringWriter
implements Writer, WriterSync
import { StringWriter } from "https://deno.land/std@0.106.0/io/writers.ts";

Writer utility for buffering string chunks

Constructors

new
StringWriter(base?: string)

Properties

private
byteLength: number
private
cache: string | undefined
private
chunks: Uint8Array[]

Methods

toString(): string
write(p: Uint8Array): Promise<number>
writeSync(p: Uint8Array): number