Skip to content

Commit

Permalink
More work on encodings, see protobufjs#60
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Oct 25, 2015
1 parent 8cabbfd commit a7a250d
Show file tree
Hide file tree
Showing 17 changed files with 219 additions and 267 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A fast and complete ByteBuffer implementation using either ArrayBuffers in the b
generated from a single source tree through [MetaScript](https://github.com/dcodeIO/MetaScript).

[![Build Status](https://travis-ci.org/dcodeIO/bytebuffer.js.svg?branch=master)](https://travis-ci.org/dcodeIO/bytebuffer.js)
[![Donate](https://raw.githubusercontent.com/dcodeIO/bytebuffer.js/master/donate.png)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=dcode%40dcode.io&item_name=Open%20Source%3A%20bytebuffer.js)
[![Donate](https://raw.githubusercontent.com/dcodeIO/bytebuffer.js/master/donate.png)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=dcode%40dcode.io&item_name=%3C3%20bytebuffer.js)

Features
--------
Expand Down Expand Up @@ -61,4 +61,4 @@ Contributors

License
-------
Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html
**License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html) - Logo derived from [W3C HTML5 Logos](http://www.w3.org/html/logo/) (CC A 3.0)
6 changes: 3 additions & 3 deletions dist/bytebuffer-dataview.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,14 @@
* @type {boolean}
* @expose
*/
this.littleEndian = typeof littleEndian !== 'undefined' ? !!littleEndian : false;
this.littleEndian = littleEndian;

/**
* Whether to skip assertions of offsets and values, defaults to `false`.
* @type {boolean}
* @expose
*/
this.noAssert = !!noAssert;
this.noAssert = noAssert;
};

/**
Expand Down Expand Up @@ -168,7 +168,7 @@
* and int64 support is not available.
* @type {?Long}
* @const
* @see https://github.com/dcodeIO/Long.js
* @see https://github.com/dcodeIO/long.js
* @expose
*/
ByteBuffer.Long = Long || null;
Expand Down
26 changes: 13 additions & 13 deletions dist/bytebuffer-dataview.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified dist/bytebuffer-dataview.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/bytebuffer-dataview.min.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/bytebuffer-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,14 @@ module.exports = (function() {
* @type {boolean}
* @expose
*/
this.littleEndian = typeof littleEndian !== 'undefined' ? !!littleEndian : false;
this.littleEndian = littleEndian;

/**
* Whether to skip assertions of offsets and values, defaults to `false`.
* @type {boolean}
* @expose
*/
this.noAssert = !!noAssert;
this.noAssert = noAssert;
};

/**
Expand Down
6 changes: 3 additions & 3 deletions dist/bytebuffer.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,14 @@
* @type {boolean}
* @expose
*/
this.littleEndian = typeof littleEndian !== 'undefined' ? !!littleEndian : false;
this.littleEndian = littleEndian;

/**
* Whether to skip assertions of offsets and values, defaults to `false`.
* @type {boolean}
* @expose
*/
this.noAssert = !!noAssert;
this.noAssert = noAssert;
};

/**
Expand Down Expand Up @@ -168,7 +168,7 @@
* and int64 support is not available.
* @type {?Long}
* @const
* @see https://github.com/dcodeIO/Long.js
* @see https://github.com/dcodeIO/long.js
* @expose
*/
ByteBuffer.Long = Long || null;
Expand Down
Loading

0 comments on commit a7a250d

Please sign in to comment.