UNPKG

@hqtsm/crc

Version:

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

22 lines (18 loc) 232 B
/** * @module * * CRC-3/GSM */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-3/GSM */ export const CRC_3_GSM = crc( 3, 0x3, false, 0x0, false, 0x7, ) as CrcInterface<number>; export default CRC_3_GSM;