Universal wrapper for https://github.com/holepunchto/libcrc with a JavaScript fallback.
npm install crc-universal
const { crc32 } = require('crc-universal')
const crc = crc32(Buffer.from('hello world'))
// 0xd4a1185
Compute the CRC32 of the given buffer.
Apache 2.0