arrayBufferToHex
Call Signature
Section titled “Call Signature”arrayBufferToHex(
data
):string
Defined in: obsidian.d.ts:429
Parameters
Section titled “Parameters”Returns
Section titled “Returns”string
Call Signature
Section titled “Call Signature”arrayBufferToHex(
data
):string
Defined in: src/obsidian/augmentations/functions.d.ts:51
Converts an ArrayBuffer
to a hex string.
Parameters
Section titled “Parameters”Returns
Section titled “Returns”string
The hex string.
Example
Section titled “Example”console.log(arrayBufferToHex(new Uint8Array([1,2,3]).buffer)); // 010203