Skip to main content
Module

std/node/buffer.ts>Buffer#equals

Deno standard library
Go to Latest
method Buffer.prototype.equals
import { Buffer } from "https://deno.land/std@0.158.0/node/buffer.ts";

Returns true if both buf and otherBuffer have exactly the same bytes,false otherwise. Equivalent to buf.compare(otherBuffer) === 0.

import { Buffer } from 'buffer';

const buf1 = Buffer.from('ABC');
const buf2 = Buffer.from('414243', 'hex');
const buf3 = Buffer.from('ABCD');

console.log(buf1.equals(buf2));
// Prints: true
console.log(buf1.equals(buf3));
// Prints: false

Parameters

otherBuffer: Uint8Array

A Buffer or Uint8Array with which to compare buf.

Returns

boolean