UNPKG

@hqtsm/crc

Version:

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

22 lines (18 loc) 238 B
/** * @module * * CRC-4/G-704 */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-4/G-704 */ export const CRC_4_G_704 = crc( 4, 0x3, true, 0x0, true, 0x0, ) as CrcInterface<number>; export default CRC_4_G_704;