A lightweight JavaScript CRC32 calculator.
npm install lighter-crc32The lighter-crc32 module is a lightweight CRC32 calculator.
It supports:
* Constructors (Type.prototype.init)
* Prototypal inheritance (Type.extend)
* Multiple inheritance (Type.decorate)
* Non-enumerable property definitions (Type.hide)
From your project directory, install and save as a dependency:
``bash`
npm install --save lighter-crc32
Just pass a string or buffer to the crc32 function to get a CRC32 integer.
`javascript``
var crc32 = require('lighter-crc32')
var a = crc32('String to hash')
var b = crc32(new Buffer('Buffer to hash'))