UNPKG

@hqtsm/crc

Version:

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

22 lines (18 loc) 263 B
/** * @module * * CRC-10/CDMA2000 */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-10/CDMA2000 */ export const CRC_10_CDMA2000 = crc( 10, 0x3d9, false, 0x3ff, false, 0x000, ) as CrcInterface<number>; export default CRC_10_CDMA2000;