Skip to content

Commit

Permalink
v1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zbjornson committed Sep 21, 2016
1 parent 760f421 commit 12ab2dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ you're processing small arrays, it is available as `bswap.js(arr)`.
| Library | Operand | In-Place | 64-bit Type Support | Browser | Speed (vs bswap)* |
| --- | --- | --- | --- | --- | --- |
| bswap (this) | TypedArray | yes | yes | yes | 1.00 |
| node [`buffer.swap16/32/64`](https://nodejs.org/api/buffer.html#buffer_buf_swap16) | Buffer | yes | since 6.3.0 | no | 0.11 |
| [endian-toggle](https://github.com/substack/endian-toggle) | Buffer | no | yes | no | 0.02 |
| [network-byte-order](https://github.com/mattcg/network-byte-order) | Number/\[Octet\] | no | no | yes | 0.02 |
| node [`buffer.swap16/32/64`](https://nodejs.org/api/buffer.html#buffer_buf_swap16) | Buffer | yes | since 6.3.0 | no | 0.14 |
| [endian-toggle](https://github.com/substack/endian-toggle) | Buffer | no | yes | no | 0.03 |
| [network-byte-order](https://github.com/mattcg/network-byte-order) | Number/\[Octet\] | no | no | yes | 0.009 |

\* Higher is better. For 16-bit types, 10k-element arrays.

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bswap",
"version": "1.1.3",
"version": "1.1.4",
"description": "fast byte swapping",
"main": "bswap.js",
"scripts": {
Expand All @@ -15,7 +15,7 @@
"swap",
"bswap",
"hton",
"ntohl",
"ntoh",
"endian",
"little endian",
"big endian",
Expand All @@ -31,7 +31,7 @@
},
"homepage": "https://github.com/zbjornson/node-bswap#readme",
"dependencies": {
"nan": "^2.3.5"
"nan": "^2.4.0"
},
"devDependencies": {
"chai": "^3.5.0",
Expand Down

0 comments on commit 12ab2dc

Please sign in to comment.