Eric Foster 35b96bc934 initial commit před 6 roky
..
test initial commit před 6 roky
.jshintrc initial commit před 6 roky
.npmignore initial commit před 6 roky
.testem.json initial commit před 6 roky
.travis.yml initial commit před 6 roky
LICENCE initial commit před 6 roky
README.md initial commit před 6 roky
index.js initial commit před 6 roky
package.json initial commit před 6 roky

README.md

continuable-cache

Cache a continuable

Example

var cache = require("continuable-cache")
var fs = require("fs")

var readFile = function (uri) { return function (cb) {
    fs.readFile(uri, cb)
} }

var continuableFile = readFile("./package.json")

var cached = cache(continuableFile)

// will only do one file read operation
cached(function (err, file) {
    /* calls out to fs.readFile */
})

cached(function (err, file) {
    /* get's either err or file from cache in cached */
})

Installation

npm install continuable-cache

Contributors

  • Raynos

MIT Licenced