UI for Zipcoin Blue
Tennessee Gibbs 0304752480 added pages to master hace 6 años
..
test added pages to master hace 6 años
.jshintrc added pages to master hace 6 años
.npmignore added pages to master hace 6 años
.testem.json added pages to master hace 6 años
.travis.yml added pages to master hace 6 años
LICENCE added pages to master hace 6 años
README.md added pages to master hace 6 años
index.js added pages to master hace 6 años
package.json added pages to master hace 6 años

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