UNPKG

uint8arrays

Version:

Utility functions to make dealing with Uint8Arrays easier

9 lines (7 loc) 216 B
import { Buffer } from 'node:buffer' /** * Can be used with Array.sort to sort and array with Uint8Array entries */ export function compare (a: Uint8Array, b: Uint8Array): number { return Buffer.compare(a, b) }