/**
 * @module
 *
 * CRC-16/LJ1200
 */

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

/**
 * CRC-16/LJ1200
 */
export default crc(
	16,
	0x6f63,
	false,
	0x0000,
	false,
	0x0000,
) as CrcInterface<number>;
