UNPKG

@hqtsm/crc

Version:

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

22 lines (18 loc) 246 B
/** * @module * * CRC-12/UMTS */ import { crc, type CrcInterface } from '../crc.js'; /** * CRC-12/UMTS */ export const CRC_12_UMTS = crc( 12, 0x80f, false, 0x000, true, 0x000, ) as CrcInterface<number>; export default CRC_12_UMTS;