@@ -9,42 +9,39 @@ ByteBuffer.js uses either ArrayBuffers in the browser or Buffers under node.js.
99
1010Using Typed Arrays here is pretty much ideal, but it [ requires a somewhat recent browser] ( http://caniuse.com/#feat=typedarrays ) .
1111
12- * ** [ ByteBufferAB .js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB .js ) **
12+ * ** [ bytebuffer .js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/bytebuffer .js ) **
1313 uses an ArrayBuffer as its backing buffer, accessed through an [ Uint8Array] ( https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array ) .
1414
15- * ** [ ByteBufferAB .min.js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB .min.js ) **
15+ * ** [ bytebuffer .min.js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/bytebuffer .min.js ) **
1616 has been compiled with Closure Compiler using advanced optimizations.
1717
18- * ** [ ByteBufferAB .min.js.gz] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB .min.js.gz ) **
18+ * ** [ bytebuffer .min.js.gz] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/bytebuffer .min.js.gz ) **
1919 has also been gzipped using ` -9 ` .
2020
21- * ** [ ByteBufferAB .min.map] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB .min.map ) **
21+ * ** [ bytebuffer .min.map] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/bytebuffer .min.map ) **
2222 is the source map generated by Closure Compiler.
2323
2424##### Accessed through a DataView ([ polyfill] ( https://github.com/inexorabletash/polyfill/blob/master/typedarray.js ) compatible)
2525
2626Using DataViews is [ generally slower] ( https://github.com/dcodeIO/ByteBuffer.js/issues/16 ) but works well with common polyfills for
2727older browsers (avoids array access operators on Typed Arrays).
2828
29- * ** [ ByteBufferAB_DataView .js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB_DataView .js ) **
29+ * ** [ bytebuffer-dataview .js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/bytebuffer-dataview .js ) **
3030 uses an ArrayBuffer as its backing buffer, accessed through a [ DataView] ( https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/DataView ) .
3131
32- * ** [ ByteBufferAB_DataView .min.js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB_DataView .min.js ) **
32+ * ** [ bytebuffer-dataview .min.js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/bytebuffer-dataview .min.js ) **
3333 has been compiled with Closure Compiler using advanced optimizations.
3434
35- * ** [ ByteBufferAB_DataView .min.js.gz] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB_DataView .min.js.gz ) **
35+ * ** [ bytebuffer-dataview .min.js.gz] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/bytebuffer-dataview .min.js.gz ) **
3636 has also been gzipped using ` -9 ` .
3737
38- * ** [ ByteBufferAB_DataView .min.map] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB_DataView .min.map ) **
38+ * ** [ bytebuffer-dataview .min.map] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/bytebuffer-dataview .min.map ) **
3939 is the source map generated by Closure Compiler.
4040
4141### node.js: [ Buffer] ( https://nodejs.org/api/buffer.html ) -backed
4242
43- * ** [ ByteBufferNB .js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferNB .js ) **
43+ * ** [ bytebuffer-node .js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/bytebuffer-node .js ) **
4444 uses a [ node Buffer] ( https://nodejs.org/api/buffer.html ) as its backing buffer and accessor.
4545
4646Also available as ` bytebuffer ` on [ npm] ( https://www.npmjs.org/package/bytebuffer ) and
4747[ bower] ( http://bower.io/search/?q=bytebuffer ) .
48-
49- When installed as an [ npm package] ( https://www.npmjs.org/package/bytebuffer ) , both versions are available.
50- ` exports ` and ` exports.ByteBufferNB ` point at ByteBufferNB, ` exports.ByteBufferAB ` points at ByteBufferAB.
0 commit comments