UNPKG

@hqtsm/crc

Version:

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

22 lines (18 loc) 243 B
/** * @module * * CRC-10/GSM */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-10/GSM */ export const CRC_10_GSM = crc( 10, 0x175, false, 0x000, false, 0x3ff, ) as CrcInterface<number>; export default CRC_10_GSM;