Skip to main content
Go to Latest
method Buffer.prototype.writeInt32LE
import { Buffer } from "https://deno.land/std@0.167.0/node/buffer.ts";

Writes value to buf at the specified offset as little-endian. The valuemust be a valid signed 32-bit integer. Behavior is undefined when value is anything other than a signed 32-bit integer.

The value is interpreted and written as a two's complement signed integer.

import { Buffer } from 'buffer';

const buf = Buffer.allocUnsafe(4);

buf.writeInt32LE(0x05060708, 0);

console.log(buf);
// Prints: <Buffer 08 07 06 05>

Parameters

value: number

Number to be written to buf.

optional
offset: number

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

Returns

number

offset plus the number of bytes written.