crc16-js
v1.0.0
Published
A pure javascript crc16 calculation, not native code.
Downloads
24
Readme
Javascript CRC16 Calculation
This is a javascript crc16 generation without native code. This can be impliment in your code and use webpack to compile without much webpack configuration.
Installation
NPM
npm install crc16-js
Raw Script
Link the script src to html
<script src="https://drive.google.com/uc?export=view&id=1vdMq-WXenwisH8g1okfas9TInZx9RA1k"></script>
Usage
NPM
const crc16 = require("crc16-js");
or
import crc16 from "crc16-js";
Raw Script
In your script file/tag
// Use function right away
result = crc16("Hello")