UNPKG

@hqtsm/crc

Version:

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

20 lines (17 loc) 204 B
/** * @module * * CRC-12/GSM */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-12/GSM */ export default crc( 12, 0xd31, false, 0x000, false, 0xfff, ) as CrcInterface<number>;