8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3064a56 commit b993400Copy full SHA for b993400
README.md
@@ -26,11 +26,16 @@ available.
26
27
```javascript
28
var ByteBuffer = require("bytebuffer");
29
-var bb = new ByteBuffer();
30
-bb.writeIString("Hello world!").flip();
+
+var bb = new ByteBuffer()
31
+ .writeIString("Hello world!")
32
+ .flip();
33
console.log(bb.readIString()+" from ByteBuffer.js");
34
```
35
36
+In the browser, 64 bit integer support is optional and present only if [Long.js](https://github.com/dcodeIO/Long.js) has
37
+been loaded prior to ByteBuffer.js.
38
39
API
40
---
41
* [View the API documentation](http://htmlpreview.github.io/?https://raw.githubusercontent.com/dcodeIO/ByteBuffer.js/master/docs/index.html)
0 commit comments