0.0.1 • Published 8 years ago

seqFlow v0.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

seqflow

Usage

const seqFlow = require('seqFlow');
//define N functions
const fn1 = (data, next) => {
    console.log('fn1')
    data++
    next(null, data)
}

const fn2 = (data, next) => {
    console.log('fn2')
    data++;
    next(null, data);
}
const fn3 = (data, next) => {
    console.log('fn3')
    data++;
    next(null, data);
}

seqFlow([fn1, fn2, fn3], 0, (err, data) => {
    if(err) {
        console.error('error');
    }
    console.log('end without error', data);
});