|
|
1 éve%!(EXTRA string=óta) | |
|---|---|---|
| .. | ||
| .github | 1 éve%!(EXTRA string=óta) | |
| example | 1 éve%!(EXTRA string=óta) | |
| test | 1 éve%!(EXTRA string=óta) | |
| .eslintrc | 1 éve%!(EXTRA string=óta) | |
| CHANGELOG.md | 1 éve%!(EXTRA string=óta) | |
| LICENSE | 1 éve%!(EXTRA string=óta) | |
| README.md | 1 éve%!(EXTRA string=óta) | |
| index.js | 1 éve%!(EXTRA string=óta) | |
| package.json | 1 éve%!(EXTRA string=óta) | |
Return whether two buffers are equal.
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
var bufferEqual = require('buffer-equal');
Return whether the two buffers a and b are equal.
If a or b is not a buffer, return undefined.
With npm do:
npm install buffer-equal
MIT