Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/ext/node/polyfills/buffer.ts>Buffer#readBigUInt64BE

A modern runtime for JavaScript and TypeScript.
Go to Latest
method Buffer.prototype.readBigUInt64BE
import { Buffer } from "https://deno.land/x/deno@v1.39.0/ext/node/polyfills/buffer.ts";

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

This function is also available under the readBigUint64BE alias.

import { Buffer } from "ext:deno_node/internal/buffer";

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

console.log(buf.readBigUInt64BE(0));
// Prints: 4294967295n

Parameters

optional
offset: number

Number of bytes to skip before starting to read. Must satisfy: 0 <= offset <= buf.length - 8.

Returns

bigint