one no-op function to rule them all
npm install no-op
Exports a function that does nothing.
``js
var noop = require('no-op')
function foobar(cb) {
cb = cb || noop
cb('finished')
}
`

#### noop()`
A function that does nothing.
MIT, see LICENSE.md for details.