continuable-hash

0.1.4 • Public • Published

continuable-hash

Turn a hash of continuables into a continuable containing a hash of values

Example

var fs = require("fs")
var hash = require("continuable-hash")
 
var file1 = function (cb) {
    fs.readFile("~/foo", cb)
}
var file2 = function (cb) {
    fs.readFile("~/bar", cb)
}
 
hash({ file1: file1, file2: file2 })(function (err, tuple) {
    if (err) {
        throw err
    }
 
    var file1 = tuple.file1
    var file2 = tuple.file2
    /* do stuff */
})

Installation

npm install continuable-hash

Contributors

  • Raynos

MIT Licenced

Readme

Keywords

none

Package Sidebar

Install

npm i continuable-hash

Weekly Downloads

63

Version

0.1.4

License

none

Last publish

Collaborators

  • raynos