Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
function crc32
import { crc32 } from "https://deno.land/x/crc32@v1.0.2/mod.ts";

Calculates the CRC32 checksum for the given array.

Parameters

arr: Uint8Array | string

The array to calculate the CRC32 for, can be a Uint8Array or a string.

Returns

string

The CRC32 checksum as a hexadecimal string.