Package Exports
- crc-itu
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (crc-itu) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
crc-itu 
Requirement:
- Node 0.11+
- Compiler: g++ 4.8 or later
Install:
npm install crc-ituUsage:
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