1.0.0 • Published 3 years ago

crc16-js v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

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")