Skip to main content
Module

x/discord_rpc_deno/deps.ts>Buffer#readBigUInt64LE

port of @xhayper/discord-rpc to deno
Go to Latest
method Buffer.prototype.readBigUInt64LE
import { Buffer } from "https://deno.land/x/discord_rpc_deno@1.0.9/deps.ts";

Reads an unsigned, little-endian 64-bit integer from buf at the specifiedoffset.

This function is also available under the readBigUint64LE alias.

import { Buffer } from 'buffer';

const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]);

console.log(buf.readBigUInt64LE(0));
// Prints: 18446744069414584320n

Parameters

optional
offset: number

Returns

bigint