0.0.1 • Published 11 years ago

async-memo v0.0.1

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

#async-memo

Call a function at most once and remember the result. Args are not supported.

##Example

var memo = require('async-memo')
var doc = memo(function(cb) {
  // fetch remote document
  // you want this to be done only once
  fetch(cb)
})
doc(function(err, val) {
  // use fetched document here
})
// You can safely call doc() from everywhere at any time.
// fetch() will be called only once.

##Installation

via component

component install eldargab/async-memo

via npm

npm install async-memo

##License

MIT