UNPKG

@hqtsm/crc

Version:

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

20 lines (17 loc) 217 B
/** * @module * * CRC-24/LTE-A */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-24/LTE-A */ export default crc( 24, 0x864cfb, false, 0x000000, false, 0x000000, ) as CrcInterface<number>;