UNPKG

@hqtsm/crc

Version:

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

12 lines 224 B
/** * @module * * CRC-12/DECT */ import { crc } from '../crc.js'; /** * CRC-12/DECT */ export const CRC_12_DECT = crc(12, 0x80f, false, 0x000, false, 0x000); export default CRC_12_DECT; //# sourceMappingURL=dect.js.map