lighter-crc32
v1.0.0
Published
A lightweight JavaScript CRC32 calculator.
Downloads
534
Maintainers
Readme
lighter-crc32
The 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
)
Installation
From your project directory, install and save as a dependency:
npm install --save lighter-crc32
API
Just pass a string or buffer to the crc32 function to get a CRC32 integer.
var crc32 = require('lighter-crc32')
var a = crc32('String to hash')
var b = crc32(new Buffer('Buffer to hash'))