Skip to main content
Go to Latest
method BufWriterSync.prototype.writeSync
import { BufWriterSync } from "https://deno.land/std@0.101.0/io/mod.ts";

Writes the contents of data into the buffer. If the contents won't fully fit into the buffer, those bytes that can are copied into the buffer, the buffer is the flushed to the writer and the remaining bytes are copied into the now empty buffer.

Parameters

data: Uint8Array

Returns

number

the number of bytes written to the buffer.