tra-analysis/website/functions/node_modules/bytebuffer/dist
2019-01-06 13:14:45 -06:00
..
bytebuffer-dataview.js push all website files 2019-01-06 13:14:45 -06:00
bytebuffer-dataview.min.js push all website files 2019-01-06 13:14:45 -06:00
bytebuffer-dataview.min.js.gz push all website files 2019-01-06 13:14:45 -06:00
bytebuffer-dataview.min.map push all website files 2019-01-06 13:14:45 -06:00
bytebuffer-node.js push all website files 2019-01-06 13:14:45 -06:00
bytebuffer.js push all website files 2019-01-06 13:14:45 -06:00
bytebuffer.min.js push all website files 2019-01-06 13:14:45 -06:00
bytebuffer.min.js.gz push all website files 2019-01-06 13:14:45 -06:00
bytebuffer.min.map push all website files 2019-01-06 13:14:45 -06:00
README.md push all website files 2019-01-06 13:14:45 -06:00

Distributions

ByteBuffer.js uses either ArrayBuffers in the browser or Buffers under node.js.

Browser: ArrayBuffer-backed

Accessed through Typed Arrays

Using Typed Arrays here is pretty much ideal, but it requires a somewhat recent browser.

Accessed through a DataView (polyfill compatible)

Using DataViews is generally slower but works well with common polyfills for older browsers (avoids array access operators on Typed Arrays).

node.js: Buffer-backed

Also available as bytebuffer on npm and bower.