xor-distance-typedarray
v1.0.0
Published
Calculate the distance between two ArrayBuffers as a new ArrayBuffer and compare computed distances with eachother
Downloads
3
Readme
xor-distance-typedarray
Calculate the xor distance between two buffers as a new buffer and compare computed distances with eachother
npm install xor-distance-typedarray
Original
https://github.com/mafintosh/xor-distance
Usage
const distance = require('xor-distance-typedarray')
const foo = distance.stringToArrayBuffer('foo')
const bar = distance.stringToArrayBuffer('bar')
const baz = distance.stringToArrayBuffer('baz')
const dist1 = distance(foo, bar)
const dist2 = distance(foo, 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