UNPKG

@hqtsm/crc

Version:

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

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