UNPKG

@hqtsm/crc

Version:

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

12 lines 254 B
/** * @module * * CRC-31/PHILIPS */ import { crc } from '../crc.js'; /** * CRC-31/PHILIPS */ export const CRC_31_PHILIPS = crc(31, 0x04c11db7, false, 0x7fffffff, false, 0x7fffffff); export default CRC_31_PHILIPS; //# sourceMappingURL=philips.js.map