@@ -3,12 +3,12 @@ Distributions
3
3
4
4
ByteBuffer uses either ArrayBuffers in the browser or Buffers under node.js.
5
5
6
- ### Browsers: ArrayBuffers
6
+ ### Browsers: [ ArrayBuffer ] ( https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer ) s
7
7
8
- ##### Using Typed Arrays
8
+ ##### Using [ TypedArray ] ( https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/TypedArray ) s
9
9
10
10
* ** [ ByteBufferAB.js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB.js ) **
11
- uses an ArrayBuffer as its backing buffer, accessed through an Uint8Array (Typed Array ).
11
+ uses an ArrayBuffer as its backing buffer, accessed through an [ Uint8Array] ( https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array ) .
12
12
13
13
* ** [ ByteBufferAB.min.js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB.min.js ) **
14
14
has been compiled with Closure Compiler using advanced optimizations.
@@ -19,10 +19,10 @@ ByteBuffer uses either ArrayBuffers in the browser or Buffers under node.js.
19
19
* ** [ ByteBufferAB.min.map] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB.min.map ) **
20
20
is the source map generated by Closure Compiler.
21
21
22
- ##### Using a DataView
22
+ ##### Using [ DataView] ( https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/DataView ) s
23
23
24
24
* ** [ ByteBufferAB_DataView.js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB_DataView.js ) **
25
- uses an ArrayBuffer as its backing buffer, accessed through a DataView.
25
+ uses an ArrayBuffer as its backing buffer, accessed through a [ DataView] ( https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/DataView ) .
26
26
27
27
* ** [ ByteBufferAB_DataView.min.js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB_DataView.min.js ) **
28
28
has been compiled with Closure Compiler using advanced optimizations.
@@ -33,15 +33,13 @@ ByteBuffer uses either ArrayBuffers in the browser or Buffers under node.js.
33
33
* ** [ ByteBufferAB_DataView.min.map] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferAB_DataView.min.map ) **
34
34
is the source map generated by Closure Compiler.
35
35
36
- ### node.js: Buffers
36
+ ### node.js: [ Buffer ] ( https://nodejs.org/api/buffer.html ) s
37
37
38
38
* ** [ ByteBufferNB.js] ( https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/dist/ByteBufferNB.js ) **
39
- uses a node Buffer as its backing buffer.
39
+ uses a [ node Buffer] ( https://nodejs.org/api/buffer.html ) as its backing buffer and accessor .
40
40
41
41
Also available as ` bytebuffer ` on [ npm] ( https://www.npmjs.org/package/bytebuffer ) and
42
42
[ bower] ( http://bower.io/search/?q=bytebuffer ) .
43
43
44
44
When installed as an [ npm package] ( https://www.npmjs.org/package/bytebuffer ) , both versions are available.
45
45
` exports ` and ` exports.ByteBufferNB ` point at ByteBufferNB, ` exports.ByteBufferAB ` points at ByteBufferAB.
46
-
47
- ** See also:** [ Experimental distributions] ( https://github.com/dcodeIO/ByteBuffer.js/tree/master/dist/experimental )
0 commit comments