Proksea/node_modules/endian-toggle
2024-07-05 00:09:37 +08:00
..
example First commit :) 2024-07-05 00:09:37 +08:00
test First commit :) 2024-07-05 00:09:37 +08:00
.travis.yml First commit :) 2024-07-05 00:09:37 +08:00
index.js First commit :) 2024-07-05 00:09:37 +08:00
LICENSE First commit :) 2024-07-05 00:09:37 +08:00
package.json First commit :) 2024-07-05 00:09:37 +08:00
readme.markdown First commit :) 2024-07-05 00:09:37 +08:00

endian-toggle

Toggle the byte ordering of a buffer.

build status

example

var toggle = require('endian-toggle');
var buf = new Buffer('abcd');

console.dir(buf);
console.dir(toggle(buf, 16));

<Buffer 61 62 63 64>
<Buffer 62 61 64 63>

methods

var toggle = require('endian-toggle')

toggle(buf, bits)

Return a new buffer from buf with toggled endianness at bits many bits.

install

With npm do:

npm install endian-toggle

license

MIT