func-invoke
v0.0.1
Published
Functional helper for invoking methon on instance, sync and async
Downloads
3
Readme
invoke
var invoke = require( 'invoke' )
documents.forEach( invoke('setState', 'saved') )
invoke.async
var invoke = require( 'invoke' ).async
async.forEach( documents, invoke('save', 'redis'), function( err ){
})