UNPKG

@hqtsm/crc

Version:

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

12 lines 211 B
/** * @module * * CRC-6/GSM */ import { crc } from '../crc.js'; /** * CRC-6/GSM */ export const CRC_6_GSM = crc(6, 0x2f, false, 0x00, false, 0x3f); export default CRC_6_GSM; //# sourceMappingURL=gsm.js.map