0.0.6 • Published 10 years ago

crc-itu-0-12 v0.0.6

Weekly downloads
18
License
-
Repository
github
Last release
10 years ago

crc-itu

Install:

npm install crc-itu

Usage:

var crc16 = require('crc-itu').crc16;

// with string and encoding
var ret = crc16('0d0103588990501766460026', 'hex');
console.log(ret.toString(16)); // 7bf9

// with buffer
var buff = new Buffer('0d0103588990501766460026', 'hex');
var ret = crc16(buff);
console.log(ret.toString(16)); // 7bf9
0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago