UNPKG

@hqtsm/crc

Version:

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

20 lines (17 loc) 217 B
/** * @module * * CRC-32/MEF */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-32/MEF */ export default crc( 32, 0x741b8cd7, true, 0xffffffff, true, 0x00000000, ) as CrcInterface<number>;