UNPKG

crc32-from-arraybuffer

Version:
5 lines (4 loc) 352 B
/** * ref: - [How to calculate the CRC of an arrayBuffer (From FileReader in javascript) compatible with the CRC32 function in php? - Stack Overflow]( https://stackoverflow.com/questions/29416900/how-to-calculate-the-crc-of-an-arraybuffer-from-filereader-in-javascript-compa ) */ export declare function crc32FromArrayBuffer(ab: Uint8Array): number;