1.0.0 • Published 9 years ago

crc32c-stream v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

crc32c-stream Build Status

Get the crc32c calculation from a stream.

$ npm install --save crc32c-stream
var crcStream = require('crc32c-stream');
var fs = require('fs');

crcStream(fs.createReadStream('/unicorns.txt'), function(err, results) {
  if (!err) {
    // results => rw==
  }
});

API

crc32cStream(stream, callback)

input

Required Type: string

Lorem ipsum.

callback(err, results)

Required Type: Function

err

Type: Error

An error emitted from the provided stream.

results

Type: String

The base64 encoded results of the calculation.