writeIntBE

fun writeIntBE(value: Number, offset: Number, byteLength: Number): Double(source)

Writes byteLength bytes of value to buf at the specified offsetas big-endian. Supports up to 48 bits of accuracy. Behavior is undefined whenvalue is anything other than a signed integer.

import { Buffer } from 'node:buffer';

const buf = Buffer.allocUnsafe(6);

buf.writeIntBE(0x1234567890ab, 0, 6);

console.log(buf);
// Prints: <Buffer 12 34 56 78 90 ab>

Since

v0.11.15

Return

offset plus the number of bytes written.

Parameters

value

Number to be written to buf.

offset

Number of bytes to skip before starting to write. Must satisfy 0 <= offset <= buf.length - byteLength.

byteLength

Number of bytes to write. Must satisfy 0 < byteLength <= 6.