1.0.1 • Published 11 years ago

once-later v1.0.1

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

Once-Later

A simple wrapper around callbacks to make them fire both once and later.

Installation

npm install once-later --save

Usage

var later = require('once-later')

function doSomethingAsync(callback) {
  callback = later(callback)
  
  ... later ...
  
  if (err) {
    return callback(err) // Once-Later guarantees no funky return value.
  }
  
  callback(null, ...)
}

Doesn't this already exist?

There's a far more popular version, once, that only guarantees that the function will be called once. This combines that with the recommended practice for callback functions that all callbacks are fired later.