UNPKG

crc

Version:

Module for calculating Cyclic Redundancy Check (CRC) for Node.js and the browser.

9 lines (8 loc) 430 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const crc5_js_1 = __importDefault(require("./calculators/crc5.js")); const define_crc_js_1 = __importDefault(require("./define_crc.js")); exports.default = (0, define_crc_js_1.default)('crc-5', crc5_js_1.default);