/**
 * @module
 *
 * CRC-5/USB
 */

import { crc, type CrcInterface } from '../crc.js';

/**
 * CRC-5/USB
 */
export default crc(
	5,
	0x5,
	true,
	0x1f,
	true,
	0x1f,
) as CrcInterface<number>;
