UNPKG

@hqtsm/crc

Version:

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

12 lines 249 B
/** * @module * * CRC-32/MPEG-2 */ import { crc } from '../crc.js'; /** * CRC-32/MPEG-2 */ export const CRC_32_MPEG_2 = crc(32, 0x04c11db7, false, 0xffffffff, false, 0x00000000); export default CRC_32_MPEG_2; //# sourceMappingURL=mpeg-2.js.map