# continuable-hash

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

Latest version **0.1.4** (published 2013-07-30) · 0 weekly downloads

## Install

```sh
npm install continuable-hash
pnpm add continuable-hash
yarn add continuable-hash
bun add continuable-hash
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.4 |
| Published | 2013-07-30 |
| First published | 2013-05-02 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Raynos |
| Maintainers | raynos |

## Links

- npm: https://www.npmjs.com/package/continuable-hash
- Repository: https://github.com/Colingo/continuable-hash
- Issues: https://github.com/Colingo/continuable-hash/issues
- npm.io page: https://npm.io/package/continuable-hash

## Dependencies (1)

- [continuable](https://npm.io/package/continuable.md) ~1.1.6

## Recent versions

- 0.1.4 (latest) — 2013-07-30
- 0.1.3 — 2013-07-21
- 0.1.2 — 2013-05-15
- 0.1.1 — 2013-05-02

## README

# continuable-hash

<!-- [![build status][1]][2] [![dependency status][3]][4] -->

<!-- [![browser support][5]][6] -->

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

## Example

```js
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

  [1]: https://secure.travis-ci.org/Colingo/continuable-hash.png
  [2]: http://travis-ci.org/Colingo/continuable-hash
  [3]: https://david-dm.org/Colingo/continuable-hash/status.png
  [4]: https://david-dm.org/Colingo/continuable-hash
  [5]: https://ci.testling.com/Colingo/continuable-hash.png
  [6]: https://ci.testling.com/Colingo/continuable-hash

---
_Source: https://npm.io/package/continuable-hash · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
