
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
buffer-equal
Advanced tools
The buffer-equal npm package is a simple utility for checking if two Node.js Buffer or Uint8Array instances contain the same bytes. It is primarily used for comparing buffers in a way that is both efficient and straightforward.
Buffer Equality Check
This feature allows you to compare two buffers to determine if they are equal. It returns true if they are equal, false otherwise.
const bufferEqual = require('buffer-equal');
const buf1 = Buffer.from('hello world');
const buf2 = Buffer.from('hello world');
const buf3 = Buffer.from('goodbye');
console.log(bufferEqual(buf1, buf2)); // true
console.log(bufferEqual(buf1, buf3)); // false
This package offers a similar functionality to buffer-equal. It provides a method to compare two Node.js Buffer or Uint8Array objects for equality. The difference is mainly in the implementation and possibly in performance characteristics.
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
v1.0.1 - 2022-10-12
94b97cd
c08b77f
ea6a13d
tap
to tape
d4681ac
auto-changelog
50bd71a
084e09e
funding
in package.json 76b3e31
npmignore
to autogenerate an npmignore file 514a3b7
6e6963b
0973f5a
safe-publish-latest
db19aab
aud
in posttest
b108d28
FAQs
return whether two buffers are equal
The npm package buffer-equal receives a total of 3,485,146 weekly downloads. As such, buffer-equal popularity was classified as popular.
We found that buffer-equal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.