waterfall-start
v1.0.0
Published
Helper to pass arguments at the start of an async waterfall
Readme
waterfall-start
Helper to pass arguments at the start of an async waterfall.
Example
var waterfall = require('run-waterfall');
var start = require('waterfall-start');
waterfall([
start('foo', 'bar')
], function onComplete(err, arg1, arg2) {
// arg1 === 'foo'
// arg2 === 'bar'
});Installation
npm install waterfall-start
Tests
npm test
NPM scripts
npm run coverThis runs the tests with code coveragenpm run lintThis will run the linter on your codenpm testThis will run the tests.npm run traceThis will run your tests in tracing mode.npm run travisThis is run by travis.CI to run your testsnpm run view-coverThis will show code coverage in a browser
Contributors
- Matt Morgan



