Buffer

0.0.0 • Public • Published

Buffer

The goal is to use UInt8Array as a buffer backend that completely follows the Node.JS API.

For now, however, this just aliases Array as Buffer which works for many use cases.

Current Implementation

var Buffer;
(function () {
  "use strict";

  function createBuffer() {
    return Array;
  }

  if ('undefined' === typeof Buffer) {
    Buffer = createBuffer();
  }

  module.exports = Buffer;
}());

/Buffer/

    Package Sidebar

    Install

    npm i Buffer

    Weekly Downloads

    3,000

    Version

    0.0.0

    License

    none

    Last publish

    Collaborators

    • coolaj86