@hqtsm/crc
Version:
CRC functions with a parameterized engine optimized for both speed and size
13 lines • 324 B
JavaScript
;
/**
* @module
*
* CRC-16/ISO-IEC-14443-3-A
*/
Object.defineProperty(exports, "__esModule", { value: true });
const crc_js_1 = require("../crc.js");
/**
* CRC-16/ISO-IEC-14443-3-A
*/
exports.default = (0, crc_js_1.crc)(16, 0x1021, true, 0xc6c6, true, 0x0000);
//# sourceMappingURL=iso-iec-14443-3-a.js.map