UNPKG

@hqtsm/crc

Version:

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

12 lines 236 B
/** * @module * * CRC-5/EPC-C1G2 */ import { crc } from '../crc.js'; /** * CRC-5/EPC-C1G2 */ export const CRC_5_EPC_C1G2 = crc(5, 0x09, false, 0x09, false, 0x00); export default CRC_5_EPC_C1G2; //# sourceMappingURL=epc-c1g2.js.map