@aegenet/belt-crc8 Very simple crc8 💾 Installation yarn add @aegenet/belt-crc8@^2.0.0 # or npm i @aegenet/belt-crc8@^2.0.0 📝 Usage import { crc8 } from '@aegenet/belt-crc8'; crc8('hello'); // 0xf6 crc8(''); // 0x00 crc8(undefined); // 0x00 crc8(null); // 0x00