1.0.0 • Published 7 years ago

lighter-crc32 v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

lighter-crc32

Chat Version Downloads Build Coverage Style

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

More on lighter-crc32...