import { Buffer } from "https://deno.land/std@0.106.0/node/buffer.ts";
Allocates a new Buffer using an array of bytes in the range 0 – 255. Array entries outside that range will be truncated to fit into it.
This creates a view of the ArrayBuffer without copying the underlying memory. For example, when passed a reference to the .buffer property of a TypedArray instance, the newly created Buffer will share the same allocated memory as the TypedArray.
Copies the passed buffer data onto a new Buffer instance.
Parameters
buffer: Buffer | Uint8Array
Creates a new Buffer containing string.