UNPKG

@hqtsm/crc

Version:

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

12 lines 232 B
/** * @module * * CRC-32/MEF */ import { crc } from '../crc.js'; /** * CRC-32/MEF */ export const CRC_32_MEF = crc(32, 0x741b8cd7, true, 0xffffffff, true, 0x00000000); export default CRC_32_MEF; //# sourceMappingURL=mef.js.map