Package Exports
- buffer-equal
- buffer-equal/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (buffer-equal) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
buffer-equal 
Return whether two buffers are equal.
example
var bufferEqual = require('buffer-equal');
console.dir(bufferEqual(
new Buffer([253,254,255]),
new Buffer([253,254,255])
));
console.dir(bufferEqual(
new Buffer('abc'),
new Buffer('abcd')
));
console.dir(bufferEqual(
new Buffer('abc'),
'abc'
));
output:
true
false
undefined
methods
var bufferEqual = require('buffer-equal');
bufferEqual(a, b)
Return whether the two buffers a
and b
are equal.
If a
or b
is not a buffer, return undefined
.
install
With npm do:
npm install buffer-equal
license
MIT