0.0.0 • Published 13 years ago
endian-toggle v0.0.0
endian-toggle
Toggle the byte ordering of a buffer.
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-togglelicense
MIT
0.0.0
13 years ago
