UNPKG

@hqtsm/crc

Version:

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

20 lines (17 loc) 221 B
/** * @module * * CRC-30/CDMA */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-30/CDMA */ export default crc( 30, 0x2030b9c7, false, 0x3fffffff, false, 0x3fffffff, ) as CrcInterface<number>;