xor-distance
Version:
Calculate the distance between two buffers as a new buffer and compare computed distances with eachother
27 lines (17 loc) • 639 B
Markdown
# xor-distance
Calculate the xor distance between two buffers as a new buffer and compare computed distances with eachother
```
npm install xor-distance
```
[](http://travis-ci.org/mafintosh/xor-distance)
## Usage
``` js
var distance = require('./')
var dist1 = distance(new Buffer('foo'), new Buffer('bar'))
var dist2 = distance(new Buffer('foo'), new Buffer('baz'))
// the following returns true since the distance between foo and bar
// is greater than the distance between foo and baz
console.log(distance.gt(dist1, dist2))
```
## License
MIT