UNPKG

@hqtsm/crc

Version:

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

11 lines 191 B
/** * @module * * CRC-16/KERMIT */ import { crc } from '../crc.js'; /** * CRC-16/KERMIT */ export default crc(16, 0x1021, true, 0x0000, true, 0x0000); //# sourceMappingURL=kermit.js.map