UNPKG

@hqtsm/crc

Version:

CRC functions with a parameterized engine optimized for both speed and size

22 lines (18 loc) 262 B
/** * @module * * CRC-32/XFER */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-32/XFER */ export const CRC_32_XFER = crc( 32, 0x000000af, false, 0x00000000, false, 0x00000000, ) as CrcInterface<number>; export default CRC_32_XFER;