# buffer-reverse [![NPM](http://img.shields.io/npm/v/buffer-reverse.svg)](https://www.npmjs.org/package/buffer-reverse) [![TRAVIS](https://secure.travis-ci.org/crypto-browserify/buffer-reverse.png)](http://travis-ci.org/crypto-browserify/buffer-reverse) [![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard) A lite module for byte reverse on buffers. ## Examples ``` javascript var reverse = require("buffer-reverse") var a = new Buffer('00ff0f', 'hex') console.log(reverse(a)) // => ``` Or for those seeking those few extra cycles, perform the operation in place: ``` javascript var reverseInplace = require("buffer-reverse/inplace") var a = new Buffer('00ff0f', 'hex') console.log(reverseInplace(a)) // => // See that a has been mutated console.log(a) // => ``` ## License [MIT](LICENSE)