UNPKG

@hqtsm/crc

Version:

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

11 lines 172 B
/** * @module * * CRC-5/USB */ import { crc } from '../crc.js'; /** * CRC-5/USB */ export default crc(5, 0x5, true, 0x1f, true, 0x1f); //# sourceMappingURL=usb.js.map