Skip to content

Instantly share code, notes, and snippets.

@iarna
Created February 17, 2015 21:54
Show Gist options
  • Save iarna/938882a5bcb195cc8425 to your computer and use it in GitHub Desktop.
Save iarna/938882a5bcb195cc8425 to your computer and use it in GitHub Desktop.
example
function thingy(cb)
doAsyncThing("arg1", "arg2", "argn", andWarnOnError(log, cb))
}
function andWarnOnError (log, cb) {
return function (er, result) {
if (er) {
log.warn("install", "Couldn't install optional dependency:", er.message)
log.verbose("install", er.stack)
}
cb(null, result)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment