toggle the byte ordering of a buffer
npm install endian-toggleToggle the byte ordering of a buffer.

`` js
var toggle = require('endian-toggle');
var buf = new Buffer('abcd');
console.dir(buf);
console.dir(toggle(buf, 16));
`
*
``
` js`
var toggle = require('endian-toggle')
Return a new buffer from buf with toggled endianness at bits many bits.
With npm do:
```
npm install endian-toggle
MIT