Interface BufferBytesOptions

Options for Buffer.bytes.

interface BufferBytesOptions {
    copy?: boolean;
}

Properties

Properties

copy?: boolean

If true, Buffer.bytes will return a copy of the buffered data.

If false, it will return a slice to the buffer's data.

{true}