🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

buffer-equal

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buffer-equal

return whether two buffers are equal

1.0.1
latest
Source
npm
Version published
Weekly downloads
3.7M
-2.92%
Maintainers
2
Weekly downloads
 
Created

What is buffer-equal?

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.

What are buffer-equal's main functionalities?

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

Other packages similar to buffer-equal

Keywords

buffer

FAQs

Package last updated on 12 Oct 2022

Did you know?

Socket

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.

Install

Related posts