/**
 * @module
 *
 * CRC-12/GSM
 */

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

/**
 * CRC-12/GSM
 */
export default crc(
	12,
	0xd31,
	false,
	0x000,
	false,
	0xfff,
) as CrcInterface<number>;
