Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 422 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 422 Bytes

Task - Checksum Creation

This module is used as a task for the udias platform.

Compute the MD5 hash of a file

Usage

import { work } from 'udias-task-checksum-creation'

const source = new Buffer(['example data'])

work(source).then((checksum) => {
  console.log(`checksum: ${checksum}`)
})
.catch(::console.error)

For a detailed examples checkout the example.