A pure javascript crc16 calculation, not native code.
npm install crc16-js
npm install crc16-js
`Raw Script
Link the script src to html
`
`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")
``