UNPKG

@hqtsm/crc

Version:

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

11 lines 203 B
/** * @module * * CRC-32/JAMCRC */ import { crc } from '../crc.js'; /** * CRC-32/JAMCRC */ export default crc(32, 0x04c11db7, true, 0xffffffff, true, 0x00000000); //# sourceMappingURL=jamcrc.js.map